Salome HOME
Issue #805 In the sketch presentation, show both the parameter and its value: minor...
[modules/shaper.git] / src / ModuleBase / ModuleBase_IWidgetCreator.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 #include "ModuleBase_IWidgetCreator.h"
4
5 ModuleBase_IWidgetCreator::ModuleBase_IWidgetCreator()
6 {
7 }
8
9 ModuleBase_IWidgetCreator::~ModuleBase_IWidgetCreator()
10 {
11 }
12
13 QWidget* ModuleBase_IWidgetCreator::createPanelByType(const std::string& theType,
14                                                       QWidget* theParent)
15 {
16   return 0;
17 }
18
19 ModuleBase_PageBase* ModuleBase_IWidgetCreator::createPageByType(const std::string& theType,
20                                                                  QWidget* theParent,
21                                                                  Config_WidgetAPI* theWidgetApi)
22 {
23   return 0;
24 }
25
26 ModuleBase_ModelWidget* ModuleBase_IWidgetCreator::createWidgetByType(const std::string& theType,
27                                                                  QWidget* theParent,
28                                                                  Config_WidgetAPI* theWidgetApi,
29                                                                  ModuleBase_IWorkshop* theWorkshop)
30 {
31   return 0;
32 }