X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FCAM%2FCAM_DataModel.h;h=ce4d99cc6ff12f654ff9089a1449ec07a0f5f790;hb=e6caa123c65e3c4a3017364ec5bb4225fd898465;hp=d55465beedeac92f2d892fd26063c091698e8242;hpb=077ca08b7937cca4b459b8a3b7edd51bafc770d2;p=modules%2Fgui.git diff --git a/src/CAM/CAM_DataModel.h b/src/CAM/CAM_DataModel.h index d55465bee..ce4d99cc6 100755 --- a/src/CAM/CAM_DataModel.h +++ b/src/CAM/CAM_DataModel.h @@ -1,9 +1,32 @@ +// 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, 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 +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// + #ifndef CAM_DATAMODEL_H #define CAM_DATAMODEL_H #include "CAM.h" -#include +#include +#include class CAM_Module; class CAM_DataObject; @@ -23,22 +46,13 @@ public: CAM_DataObject* root() const; CAM_Module* module() const; - /** @name These methods should be redefined in successors.*/ - //@{ - virtual bool open( const QString&, CAM_Study* ) { return true; }//!< return true - virtual bool save() { return true; }; - virtual bool saveAs( const QString&, CAM_Study* ) { return true; }; - virtual bool close() { return true; }; - virtual bool create( CAM_Study* ) { return true; } - //@} + virtual bool open( const QString&, CAM_Study*, QStringList ); + virtual bool save( QStringList& ); + virtual bool saveAs( const QString&, CAM_Study*, QStringList& ); + virtual bool close(); + virtual bool create( CAM_Study* ); protected: - /*! setRoot() should be used to specify custom root object instance.\n - * Such an object can be created in several ways, depending on application or module needs:\n - * \li by initialize() - * \li while the model is being loaded - * \li when the model is updated and becomes non-empty - */ virtual void setRoot( const CAM_DataObject* ); private slots: @@ -48,8 +62,8 @@ signals: void rootChanged( const CAM_DataModel* ); private: - CAM_DataObject* myRoot; - CAM_Module* myModule; + CAM_DataObject* myRoot; //!< root data object + CAM_Module* myModule; //!< module }; #endif