Salome HOME
Bug 0020329: EDF 1016 GEOM : Error GetShapesOnShapeIDs. Simplify resulting compound...
[modules/geom.git] / src / GEOMImpl / GEOMImpl_IPipeDiffSect.hxx
1 //  Copyright (C) 2007-2008  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 #ifndef _GEOMImpl_IPIPE_HXX_
30 #include "GEOMImpl_IPipe.hxx"
31 #endif
32
33 #define PIPEDS_LIST_BASES 1
34 #define PIPEDS_LIST_LOCATIONS 3
35 //#define PIPEDS_ARG_PATH 2
36 #define PIPEDS_ARG_WITHCONTACT 4
37 #define PIPEDS_ARG_WITHCORRECT 5
38
39
40 class GEOMImpl_IPipeDiffSect : public GEOMImpl_IPipe
41 {
42  public:
43
44   GEOMImpl_IPipeDiffSect(const Handle(GEOM_Function)& theFunction):GEOMImpl_IPipe(theFunction) {}
45   
46   void SetBases (const Handle(TColStd_HSequenceOfTransient)& theBases) 
47   {
48     _func->SetReferenceList(PIPEDS_LIST_BASES,theBases);
49   }
50
51   Handle(TColStd_HSequenceOfTransient) GetBases ()
52   { 
53     Handle(TColStd_HSequenceOfTransient) aBases = _func->GetReferenceList(PIPEDS_LIST_BASES);
54     return aBases; 
55   }
56
57   void SetLocations (const Handle(TColStd_HSequenceOfTransient)& theLocations) 
58   { _func->SetReferenceList(PIPEDS_LIST_LOCATIONS,theLocations); }
59
60   Handle(TColStd_HSequenceOfTransient) GetLocations ()
61   { 
62     Handle(TColStd_HSequenceOfTransient) aLocs = _func->GetReferenceList(PIPEDS_LIST_LOCATIONS);
63     return aLocs; 
64   }
65
66   //void SetPath (const Handle(GEOM_Function)& thePath) { _func->SetReference(PIPEDS_ARG_PATH, thePath); }
67
68   //Handle(GEOM_Function) GetPath() { return _func->GetReference(PIPEDS_ARG_PATH); }
69
70   void SetWithContactMode(int theWithContact)
71   { _func->SetInteger(PIPEDS_ARG_WITHCONTACT,theWithContact); }
72
73   int GetWithContactMode()
74   { return _func->GetInteger(PIPEDS_ARG_WITHCONTACT); }
75
76   void SetWithCorrectionMode(int theWithCorrection)
77   { _func->SetInteger(PIPEDS_ARG_WITHCORRECT,theWithCorrection); }
78
79   int GetWithCorrectionMode()
80   { return _func->GetInteger(PIPEDS_ARG_WITHCORRECT); }
81
82 };
83
84 #endif