Salome HOME
c1783ce1e46d8c6d718629a7846068fbb10125cd
[modules/geom.git] / src / SKETCHER / Sketcher_Profile.hxx
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  File   : Sketcher_Profile.h
24 //  Author : Damien COQUERET
25
26 #if defined WIN32
27 #  if defined SKETCHER_SALOME_EXPORTS || defined SKETCHER_EXPORTS || defined GEOMSketcher_EXPORTS || defined GEOMSKETCHER_EXPORTS
28 #    define SKETCHER_SALOME_EXPORT _declspec( dllexport )
29 #  else
30 #    define SKETCHER_SALOME_EXPORT _declspec( dllimport )
31 #  endif
32 #else
33 #  define SKETCHER_SALOME_EXPORT
34 #endif
35
36 #include <TopoDS_Shape.hxx>
37 #include <TCollection_AsciiString.hxx>
38 #include <TColStd_Array1OfAsciiString.hxx>
39
40 #include <string>
41
42 class SKETCHER_SALOME_EXPORT Sketcher_Profile
43 {
44   class Functor;
45   class ShapeFunctor;
46   class DumpFunctor;
47
48 public:
49   Sketcher_Profile();
50   Sketcher_Profile( const char* );
51
52   void                    SetCommand( const char* );
53
54   TopoDS_Shape            GetShape( bool* = 0, double* = 0 );
55   TCollection_AsciiString GetDump( bool* = 0 );
56
57 private:
58   void parse( const TCollection_AsciiString&, Functor* );
59   void badArgs();
60   void findNextCommand( const TColStd_Array1OfAsciiString&, TColStd_Array1OfAsciiString&, int, int& );
61   TCollection_AsciiString extractCommand( const TCollection_AsciiString& );
62
63 private:
64   TCollection_AsciiString myCommand;
65 };