]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/ModuleBase/ModuleBase_WidgetBoolValue.h
Salome HOME
refs #80 - Sketch base GUI: create/draw point, circle and arc
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetBoolValue.h
index 8753c4cfd5ba91dca9377c8a4a465ce9d8d21253..6f32ef3ef87183b2961ead0fb7389d444a4a77c9 100644 (file)
 
 class Config_WidgetAPI;
 class QWidget;
-class QLabel;
-class QDoubleSpinBox;
 class QCheckBox;
 
 class MODULEBASE_EXPORT ModuleBase_WidgetBoolValue: public ModuleBase_ModelWidget
 {
   Q_OBJECT
 public:
+  /// Constructor
+  /// \theParent the parent object
+  /// \theData the widget configuation. The attribute of the model widget is obtained from
   ModuleBase_WidgetBoolValue(QWidget* theParent, const Config_WidgetAPI* theData);
 
   virtual ~ModuleBase_WidgetBoolValue();
@@ -37,8 +38,6 @@ public:
   QWidget* getControl() const;
 
 private:
-  std::string myAttributeID;
-  
   QCheckBox* myCheckBox;
 };