~ubuntu-branches/ubuntu/wily/ginkgocadx/wily-proposed

« back to all changes in this revision

Viewing changes to src/cadxcore/main/tools/brightnesscontrasttool.h

  • Committer: Package Import Robot
  • Author(s): Dmitry Smirnov
  • Date: 2013-10-24 21:28:17 UTC
  • mfrom: (1.2.2)
  • Revision ID: package-import@ubuntu.com-20131024212817-ej1skb9og09d3ht6
Tags: 3.5.0.1137.31+dfsg-1
New upstream release [October 2013]

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  
 
3
 *  $Id: brightnesscontrasttool.h $
 
4
 *  Ginkgo CADx Project
 
5
 *
 
6
 *  Copyright 2008-14 MetaEmotion S.L. All rights reserved.
 
7
 *  http://ginkgo-cadx.com
 
8
 *
 
9
 *  This file is licensed under LGPL v3 license.
 
10
 *  See License.txt for details
 
11
 *
 
12
 *
 
13
 */
 
14
#pragma once
 
15
#include "enabled_tools.h"
 
16
#if defined(ENABLE_MARKERTOOL)
 
17
#ifndef BRIGHTNESSCONTRASTOOL_H
 
18
#define BRIGHTNESSCONTRASTOOL_H
 
19
#include <api/api.h>
 
20
#include <export/tools/ibrightnesscontrasttool.h>
 
21
 
 
22
namespace GNC {
 
23
 
 
24
        namespace GCS {
 
25
                namespace Widgets {
 
26
                        class IWidgetBuilder;
 
27
                }
 
28
        }
 
29
 
 
30
        class EXTAPI BrightnessContrastTool : public GNC::GCS::IBrightnessContrastTool {
 
31
        public:
 
32
 
 
33
                BrightnessContrastTool();
 
34
                ~BrightnessContrastTool();
 
35
 
 
36
//region "ITool/IContract realization"
 
37
                virtual GNC::GCS::ITool* NewTool();
 
38
                virtual void Connect();
 
39
                virtual void Disconnect();
 
40
//endregion
 
41
 
 
42
        protected:
 
43
                GNC::GCS::Widgets::IWidgetBuilder*                 m_pBuilder;
 
44
        };
 
45
}
 
46
#endif
 
47
#endif
 
 
b'\\ No newline at end of file'