Salome HOME
Redesign of operations architecture
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetValue.h
1 // File:        ModuleBase_WidgetValue.h
2 // Created:     25 Apr 2014
3 // Author:      Natalia ERMOLAEVA
4
5 #ifndef ModuleBase_WidgetValue_H
6 #define ModuleBase_WidgetValue_H
7
8 #include <ModuleBase.h>
9
10 /**\class ModuleBase_WidgetValue
11  * \ingroup GUI
12  * \brief Custom widget value. An abstract class to be redefined and to be set in the model widget
13  */
14 class MODULEBASE_EXPORT ModuleBase_WidgetValue
15 {
16  public:
17   /// Constructor
18   ModuleBase_WidgetValue();
19   /// Destructor
20   virtual ~ModuleBase_WidgetValue();
21 };
22
23 #endif