Salome HOME
Provide preferences in Salome mode
[modules/shaper.git] / src / XGUI / XGUI_IPrefMgr.h
1 // File:        XGUI_IPrefMgr.h
2 // Created:     10 Sept 2014
3 // Author:      Vitaly SMETANNIKOV
4
5
6 #ifndef XGUI_IPrefMgr_H
7 #define XGUI_IPrefMgr_H
8
9 #include <QString>
10 #include <SUIT_PreferenceMgr.h>
11
12 class XGUI_IPrefMgr
13 {
14 public:
15   virtual int addPreference(const QString& theLbl, int pId, 
16                             SUIT_PreferenceMgr::PrefItemType theType,
17                             const QString& theSection, const QString& theName ) = 0;
18
19   virtual SUIT_PreferenceMgr* prefMgr() const = 0;
20 };
21
22 #endif