X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FCAM%2FCAM_DataModel.h;h=ce4d99cc6ff12f654ff9089a1449ec07a0f5f790;hb=e6caa123c65e3c4a3017364ec5bb4225fd898465;hp=4cbc8ab9328be761930c6069b56432621a33000e;hpb=399155730966dfc225fbb24f66204b05664385f2;p=modules%2Fgui.git diff --git a/src/CAM/CAM_DataModel.h b/src/CAM/CAM_DataModel.h index 4cbc8ab93..ce4d99cc6 100755 --- a/src/CAM/CAM_DataModel.h +++ b/src/CAM/CAM_DataModel.h @@ -1,39 +1,38 @@ -// 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/ or email : webmaster.salome@opencascade.com // + #ifndef CAM_DATAMODEL_H #define CAM_DATAMODEL_H #include "CAM.h" -#include -#include +#include +#include class CAM_Module; class CAM_DataObject; class CAM_Study; class SUIT_DataObject; -/*! - \class CAM_DataModel - Base class for all data models used in CAM-based applications. - Represents data model of CAM module. Provides necessary interface (default implementation is empty) -*/ class CAM_EXPORT CAM_DataModel : public QObject { Q_OBJECT @@ -47,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*, QStringList ) { return true; }//!< return true - virtual bool save( QStringList& ) { return true; }; - virtual bool saveAs( const QString&, CAM_Study*, QStringList& ) { 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: @@ -72,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