]> SALOME platform Git repositories - modules/geom.git/blob - src/GEOMImpl/GEOMImpl_IPipeDiffSect.hxx
Salome HOME
Merge from V6_main 11/02/2013
[modules/geom.git] / src / GEOMImpl / GEOMImpl_IPipeDiffSect.hxx
1 // Copyright (C) 2007-2012  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 //NOTE: This is an intreface to a function for the Pipe creation.
23
24 #ifndef _GEOMImpl_IPIPEDIFFSECT_HXX_
25 #define _GEOMImpl_IPIPEDIFFSECT_HXX_
26
27 #include "GEOM_Function.hxx"
28
29 #include <TColStd_HSequenceOfTransient.hxx>
30
31 #ifndef _GEOMImpl_IPIPE_HXX_
32 #include "GEOMImpl_IPipe.hxx"
33 #endif
34
35 #define PIPEDS_LIST_BASES 1
36 #define PIPEDS_LIST_LOCATIONS 3
37 //#define PIPEDS_ARG_PATH 2
38 #define PIPEDS_ARG_WITHCONTACT 4
39 #define PIPEDS_ARG_WITHCORRECT 5
40
41
42 class GEOMImpl_IPipeDiffSect : public GEOMImpl_IPipe
43 {
44  public:
45
46   GEOMImpl_IPipeDiffSect(const Handle(GEOM_Function)& theFunction):GEOMImpl_IPipe(theFunction) {}
47   
48   void SetBases (const Handle(TColStd_HSequenceOfTransient)& theBases) 
49   {
50     _func->SetReferenceList(PIPEDS_LIST_BASES,theBases);
51   }
52
53   Handle(TColStd_HSequenceOfTransient) GetBases ()
54   { 
55     Handle(TColStd_HSequenceOfTransient) aBases = _func->GetReferenceList(PIPEDS_LIST_BASES);
56     return aBases; 
57   }
58
59   void SetLocations (const Handle(TColStd_HSequenceOfTransient)& theLocations) 
60   { _func->SetReferenceList(PIPEDS_LIST_LOCATIONS,theLocations); }
61
62   Handle(TColStd_HSequenceOfTransient) GetLocations ()
63   { 
64     Handle(TColStd_HSequenceOfTransient) aLocs = _func->GetReferenceList(PIPEDS_LIST_LOCATIONS);
65     return aLocs; 
66   }
67
68   //void SetPath (const Handle(GEOM_Function)& thePath) { _func->SetReference(PIPEDS_ARG_PATH, thePath); }
69
70   //Handle(GEOM_Function) GetPath() { return _func->GetReference(PIPEDS_ARG_PATH); }
71
72   void SetWithContactMode(int theWithContact)
73   { _func->SetInteger(PIPEDS_ARG_WITHCONTACT,theWithContact); }
74
75   int GetWithContactMode()
76   { return _func->GetInteger(PIPEDS_ARG_WITHCONTACT); }
77
78   void SetWithCorrectionMode(int theWithCorrection)
79   { _func->SetInteger(PIPEDS_ARG_WITHCORRECT,theWithCorrection); }
80
81   int GetWithCorrectionMode()
82   { return _func->GetInteger(PIPEDS_ARG_WITHCORRECT); }
83
84 };
85
86 #endif