]> SALOME platform Git repositories - modules/gui.git/blob - src/LightApp/LightApp_DataOwner.h
Salome HOME
c04f1823017cc333f599415a8847ce2dca2618f0
[modules/gui.git] / src / LightApp / LightApp_DataOwner.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 #ifndef LIGHTAPP_DATAOWNER_H
23 #define LIGHTAPP_DATAOWNER_H
24
25 #include "LightApp.h"
26 #include "SUIT_DataOwner.h"
27
28 #ifndef DISABLE_SALOMEOBJECT
29   #include "SALOME_InteractiveObject.hxx"
30 #endif
31
32
33 /*!
34   This class provide data owner objects.
35 */
36 class LIGHTAPP_EXPORT LightApp_DataOwner : public SUIT_DataOwner
37 {
38 public:
39 #ifndef DISABLE_SALOMEOBJECT
40     LightApp_DataOwner( const Handle(SALOME_InteractiveObject)& theIO );
41 #endif
42     LightApp_DataOwner( const QString& );
43     virtual ~LightApp_DataOwner();
44
45     // *** jfa: The below line has been put here 14.02.2007.
46     // *** It cancels modifications from branch BR_Dev_For_4_0
47     virtual QString keyString() const;
48
49 #ifndef DISABLE_SALOMEOBJECT
50     const Handle(SALOME_InteractiveObject)& IO() const;
51 #endif
52     QString entry() const;
53
54 private:
55     QString  myEntry;
56 #ifndef DISABLE_SALOMEOBJECT
57     Handle(SALOME_InteractiveObject) myIO;
58 #endif
59 };
60
61 typedef SMART(LightApp_DataOwner) LightApp_DataOwnerPtr;
62
63 #endif