/src/contrib/geom-5.1.2.7/inc_pythonocc/GEOMImpl_IPipeShellSect.hxx
http://pythonocc.googlecode.com/ · C++ Header · 55 lines · 24 code · 11 blank · 20 comment · 0 complexity · 7157dd89d177957ee7985706dc515ea5 MD5 · raw file
- // Copyright (C) 2005 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
- // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
- //
- // This library is free software; you can redistribute it and/or
- // modify it under the terms of the GNU Lesser General Public
- // License as published by the Free Software Foundation; either
- // version 2.1 of the License.
- //
- // This library is distributed in the hope that it will be useful
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- // Lesser General Public License for more details.
- //
- // You should have received a copy of the GNU Lesser General Public
- // License along with this library; if not, write to the Free Software
- // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- //
- // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
- //
- //NOTE: This is an intreface to a function for the Pipe creation.
- #ifndef _GEOMImpl_IPIPESHELLSECT_HXX_
- #define _GEOMImpl_IPIPESHELLSECT_HXX_
- #include "SGEOM_Function.hxx"
- #ifndef _GEOMImpl_IPIPEDIFFSECT_HXX_
- #include "GEOMImpl_IPipeDiffSect.hxx"
- #endif
- #define PIPEDS_LIST_SUBBASES 6
- class GEOMImpl_IPipeShellSect : public GEOMImpl_IPipeDiffSect
- {
- public:
- GEOMImpl_IPipeShellSect(const Handle(GEOM_Function)& theFunction):
- GEOMImpl_IPipeDiffSect(theFunction) {}
-
- void SetSubBases (const Handle(TColStd_HSequenceOfTransient)& theSubBases)
- {
- _func->SetReferenceList(PIPEDS_LIST_SUBBASES,theSubBases);
- }
- Handle(TColStd_HSequenceOfTransient) GetSubBases ()
- {
- Handle(TColStd_HSequenceOfTransient) aSubBases =
- _func->GetReferenceList(PIPEDS_LIST_SUBBASES);
- return aSubBases;
- }
- };
- #endif