Salome HOME
Issue #1368: Creation of a Qt panel. SamplePanelPlugin feature providing
[modules/shaper.git] / src / SamplePanelPlugin / SamplePanelPlugin_Panel.h
diff --git a/src/SamplePanelPlugin/SamplePanelPlugin_Panel.h b/src/SamplePanelPlugin/SamplePanelPlugin_Panel.h
new file mode 100755 (executable)
index 0000000..29c2859
--- /dev/null
@@ -0,0 +1,25 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
+
+// File:        SamplePanelPlugin_PageGroupBox.h
+// Created:     29 Mar 2015
+// Author:      Natalia ERMOLAEVA
+
+#ifndef SAMPLEPANELPLUGIN_PANEL_H_
+#define SAMPLEPANELPLUGIN_PANEL_H_
+
+#include <QWidget>
+
+/*!
+ * \ingroup GUI
+ * Represent a property panel's list of ModuleBase_ModelWidgets.
+ */
+class SamplePanelPlugin_Panel : public QWidget
+{
+public:
+  /// Constructs a panel page
+  SamplePanelPlugin_Panel(QWidget* theParent);
+  /// Destructs the page
+  virtual ~SamplePanelPlugin_Panel() {}
+};
+
+#endif /* SAMPLEPANELPLUGIN_PANEL_H_ */