X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMESH_I%2FSMESH_NoteBook.hxx;h=3d19d1441f0837c5b69bfa8a9fa777faa606ba54;hp=dfeb3b50a23123e704fce386104e7b1b8b6bf0c0;hb=5504d02a2237b17b8459bcd3b1fb2a89468598cd;hpb=0635c9fc80f67d1e5dc0e94ec85f487286a92070 diff --git a/src/SMESH_I/SMESH_NoteBook.hxx b/src/SMESH_I/SMESH_NoteBook.hxx index dfeb3b50a..3d19d1441 100644 --- a/src/SMESH_I/SMESH_NoteBook.hxx +++ b/src/SMESH_I/SMESH_NoteBook.hxx @@ -1,12 +1,11 @@ -// Copyright (C) 2008 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, -// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS +// Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE // // 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. +// 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 +// 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. @@ -17,13 +16,17 @@ // // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // + // File : SMESH_NoteBook.hxx // Author : Roman NIKOLAEV () - - +// #ifndef SMESH_NoteBook_HeaderFile #define SMESH_NoteBook_HeaderFile +// All this stuff is obsolete since issue 0021308: +// "Remove hard-coded dependency of the external mesh plugins from the SMESH module" +// is implemented (Mar 2012). It is kept for backward compatibility only. + #include #include @@ -34,14 +37,14 @@ class _pyCommand; typedef std::vector TState; typedef std::vector TAllStates; -typedef TCollection_AsciiString _pyID; +typedef TCollection_AsciiString _pyID; -class ObjectStates{ +class SMESH_ObjectStates{ public: - ObjectStates(TCollection_AsciiString theType); - virtual ~ObjectStates(); + SMESH_ObjectStates(TCollection_AsciiString theType); + virtual ~SMESH_ObjectStates(); void AddState(const TState &theState); @@ -58,7 +61,7 @@ private: int _dumpstate; }; -class LayerDistributionStates : public ObjectStates +class LayerDistributionStates : public SMESH_ObjectStates { public: typedef std::map TDistributionMap; @@ -81,16 +84,17 @@ private: class SMESH_NoteBook { public: - typedef std::map TVariablesMap; - typedef std::map TMeshEditorMap; + SMESH_NoteBook(); ~SMESH_NoteBook(); void ReplaceVariables(); void AddCommand(const TCollection_AsciiString& theString); TCollection_AsciiString GetResultScript() const; + void GetResultLines(std::list< TCollection_AsciiString >& lines) const; private: + void InitObjectMap(); void ProcessLayerDistribution(); @@ -98,9 +102,14 @@ private: private: - TVariablesMap _objectMap; + typedef std::map TVariablesMap; + typedef std::map TMeshEditorMap; + typedef std::map > TEntry2VarVecMap; + + TVariablesMap _objectMap; // old approach - full states are kept + TEntry2VarVecMap _entry2VarsMap; // new approach - only var names are kept std::vector _commands; - TMeshEditorMap myMeshEditors; + TMeshEditorMap _meshEditors; }; #endif //SMESH_NoteBook_HeaderFile