Salome HOME
Has functionality from SalomeApp without dependency from CORBA
[modules/gui.git] / src / LightApp / LightApp_DataSubOwner.h
1
2 #ifndef LIGHTAPP_DATASUBOWNER_H
3 #define LIGHTAPP_DATASUBOWNER_H
4
5 #include <LightApp.h>
6 #include <LightApp_DataOwner.h>
7
8 /*!
9   Class provide sub owner.
10  */
11 class LIGHTAPP_EXPORT LightApp_DataSubOwner : public LightApp_DataOwner
12 {
13 public:
14     LightApp_DataSubOwner( const QString&, const int );
15     virtual ~LightApp_DataSubOwner();
16
17     virtual bool isEqual( const SUIT_DataOwner& ) const;
18     int          index() const;
19
20 private:
21     int          myIndex;
22 };
23
24 #endif