X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FCAM%2FCAM_DataObject.h;h=e1fa57dd484cd7f937c01ade49b33857735fb605;hb=259ecb356eb789678497db6b655cc3e377a67cce;hp=70d09994ffcd7fd62f07021b9e3777f9333c503f;hpb=aa05f2a1b23a54321ea7248ae9ac3463652c734e;p=modules%2Fgui.git diff --git a/src/CAM/CAM_DataObject.h b/src/CAM/CAM_DataObject.h index 70d09994f..e1fa57dd4 100755 --- a/src/CAM/CAM_DataObject.h +++ b/src/CAM/CAM_DataObject.h @@ -1,21 +1,25 @@ -// Copyright (C) 2005 OPEN CASCADE, CEA/DEN, EDF R&D, PRINCIPIA R&D -// +// Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE +// +// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, +// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS +// // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public -// License as published by the Free Software Foundation; either -// version 2.1 of the License. -// -// This library is distributed in the hope that it will be useful -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // Lesser General Public License for more details. // -// You should have received a copy of the GNU Lesser General Public -// License along with this library; if not, write to the Free Software +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.salome-platform.org/ +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // + #ifndef CAM_DATAOBJECT_H #define CAM_DATAOBJECT_H @@ -26,10 +30,6 @@ class CAM_Module; class CAM_DataModel; -/*! - \class CAM_DataObject - Provides only additional link to CAM_DataModel -*/ class CAM_EXPORT CAM_DataObject : public SUIT_DataObject { public: @@ -40,6 +40,24 @@ public: virtual CAM_DataModel* dataModel() const; }; +class CAM_EXPORT CAM_ModuleObject : public virtual CAM_DataObject +{ +public: + CAM_ModuleObject( SUIT_DataObject* = 0 ); + CAM_ModuleObject( CAM_DataModel*, SUIT_DataObject* = 0 ); + virtual ~CAM_ModuleObject(); + + virtual QString name() const; + QPixmap icon( const int = NameId ) const; + QString toolTip( const int = NameId ) const; + + virtual CAM_DataModel* dataModel() const; + virtual void setDataModel( CAM_DataModel* ); + +private: + CAM_DataModel* myDataModel; +}; + #endif #if _MSC_VER > 1000