1 // Copyright (C) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 //NOTE: This is an intreface to a function for the Pipe creation.
25 #ifndef _GEOMImpl_IPIPEDIFFSECT_HXX_
26 #define _GEOMImpl_IPIPEDIFFSECT_HXX_
28 #include "GEOM_Function.hxx"
30 #ifndef _GEOMImpl_IPIPE_HXX_
31 #include "GEOMImpl_IPipe.hxx"
34 #define PIPEDS_LIST_BASES 1
35 #define PIPEDS_LIST_LOCATIONS 3
36 //#define PIPEDS_ARG_PATH 2
37 #define PIPEDS_ARG_WITHCONTACT 4
38 #define PIPEDS_ARG_WITHCORRECT 5
41 class GEOMImpl_IPipeDiffSect : public GEOMImpl_IPipe
45 GEOMImpl_IPipeDiffSect(const Handle(GEOM_Function)& theFunction):GEOMImpl_IPipe(theFunction) {}
47 void SetBases (const Handle(TColStd_HSequenceOfTransient)& theBases)
49 _func->SetReferenceList(PIPEDS_LIST_BASES,theBases);
52 Handle(TColStd_HSequenceOfTransient) GetBases ()
54 Handle(TColStd_HSequenceOfTransient) aBases = _func->GetReferenceList(PIPEDS_LIST_BASES);
58 void SetLocations (const Handle(TColStd_HSequenceOfTransient)& theLocations)
59 { _func->SetReferenceList(PIPEDS_LIST_LOCATIONS,theLocations); }
61 Handle(TColStd_HSequenceOfTransient) GetLocations ()
63 Handle(TColStd_HSequenceOfTransient) aLocs = _func->GetReferenceList(PIPEDS_LIST_LOCATIONS);
67 //void SetPath (const Handle(GEOM_Function)& thePath) { _func->SetReference(PIPEDS_ARG_PATH, thePath); }
69 //Handle(GEOM_Function) GetPath() { return _func->GetReference(PIPEDS_ARG_PATH); }
71 void SetWithContactMode(int theWithContact)
72 { _func->SetInteger(PIPEDS_ARG_WITHCONTACT,theWithContact); }
74 int GetWithContactMode()
75 { return _func->GetInteger(PIPEDS_ARG_WITHCONTACT); }
77 void SetWithCorrectionMode(int theWithCorrection)
78 { _func->SetInteger(PIPEDS_ARG_WITHCORRECT,theWithCorrection); }
80 int GetWithCorrectionMode()
81 { return _func->GetInteger(PIPEDS_ARG_WITHCORRECT); }