Salome HOME
a45fcadeb30c5f64a94301a75d0ab7f29b61c5eb
[modules/gui.git] / src / CAM / CAM_RootObject.cxx
1 // Copyright (C) 2005  OPEN CASCADE, CEA/DEN, EDF R&D, PRINCIPIA R&D
2 // 
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either 
6 // version 2.1 of the License.
7 // 
8 // This library is distributed in the hope that it will be useful 
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public  
14 // License along with this library; if not, write to the Free Software 
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/
18 //
19 #include "CAM_RootObject.h"
20
21 #include "CAM_DataModel.h"
22 #include "CAM_Module.h"
23
24 /*!Constructor. Initialize by \a parent.
25  * Set data model to 0.
26  */
27 CAM_RootObject::CAM_RootObject( SUIT_DataObject* parent )
28 : CAM_DataObject( parent ),
29 myDataModel( 0 )
30 {
31 }
32
33 /*!Constructor. Initialize by \a parent and \a data - data object
34  *\param data - data object
35  *\param parent - parent data object
36  */
37 CAM_RootObject::CAM_RootObject( CAM_DataModel* data, SUIT_DataObject* parent )
38 : CAM_DataObject( parent ),
39 myDataModel( data )
40 {
41 }
42
43 /*!Destructor. Do nothing.*/
44 CAM_RootObject::~CAM_RootObject()
45 {
46 }
47
48 /*!
49     Returns module name
50 */
51 QString CAM_RootObject::name() const
52 {
53   QString aName = "";
54   if (myDataModel)
55     aName = myDataModel->module()->moduleName();
56   return aName;
57 }
58
59 /*!Get data model
60  *\retval const CAM_DataModel pointer to data model.
61  */
62 CAM_DataModel* CAM_RootObject::dataModel() const
63 {
64   return myDataModel;
65 }
66
67 /*!Set data model.
68  *\param dm - data model to set.
69  */
70 void CAM_RootObject::setDataModel( CAM_DataModel* dm )
71 {
72   myDataModel = dm;
73 }