]> SALOME platform Git repositories - modules/smesh.git/blob - src/SMESH_I/SMESH_NoteBook.hxx
Salome HOME
4bc395586027b3aa0dd79d5ae817c5665bc0306a
[modules/smesh.git] / src / SMESH_I / SMESH_NoteBook.hxx
1 // Copyright (C) 2008  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 //
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License.
8 //
9 // This library is distributed in the hope that it will be useful
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 // File      : SMESH_NoteBook.hxx
21 // Author    : Roman NIKOLAEV ()
22
23
24 #ifndef SMESH_NoteBook_HeaderFile
25 #define SMESH_NoteBook_HeaderFile
26
27 #include <TCollection_AsciiString.hxx>
28 #include <Resource_DataMapOfAsciiStringAsciiString.hxx>
29
30 #include <vector>
31 #include <string>
32
33
34 class SMESH_NoteBook
35 {
36 public:
37   SMESH_NoteBook();
38   ~SMESH_NoteBook();
39   TCollection_AsciiString ReplaceVariables(const TCollection_AsciiString& theString) const;
40
41   typedef std::map<TCollection_AsciiString,std::vector<TCollection_AsciiString> > TVariablesMap;
42
43 private:
44   void InitObjectMap();
45   std::vector<std::string> ParseVariables(const std::string& theVariables, const char sep) const;
46   
47 private:
48   TVariablesMap _objectMap;
49 };
50
51 #endif //SMESH_NoteBook_HeaderFile