00001 // Copyright (C) 2007-2011 CEA/DEN, EDF R&D, OPEN CASCADE 00002 // 00003 // This library is free software; you can redistribute it and/or 00004 // modify it under the terms of the GNU Lesser General Public 00005 // License as published by the Free Software Foundation; either 00006 // version 2.1 of the License. 00007 // 00008 // This library is distributed in the hope that it will be useful, 00009 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00010 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00011 // Lesser General Public License for more details. 00012 // 00013 // You should have received a copy of the GNU Lesser General Public 00014 // License along with this library; if not, write to the Free Software 00015 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00016 // 00017 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com 00018 // 00019 00020 // SMESH SMESH : implementaion of SMESH idl descriptions 00021 // File : StdMeshers_CompositeBlock_3D.hxx 00022 // Module : SMESH 00023 // 00024 #ifndef _SMESH_CompositeSegment_1D_HXX_ 00025 #define _SMESH_CompositeSegment_1D_HXX_ 00026 00027 #include "SMESH_StdMeshers.hxx" 00028 #include "SMESH_3D_Algo.hxx" 00029 00030 class SMESH_Mesh; 00031 class StdMeshers_FaceSide; 00032 class TopoDS_Edge; 00033 class TopoDS_Face; 00034 00041 class STDMESHERS_EXPORT StdMeshers_CompositeHexa_3D: public SMESH_3D_Algo 00042 { 00043 public: 00044 StdMeshers_CompositeHexa_3D(int hypId, int studyId, SMESH_Gen* gen); 00045 //virtual ~StdMeshers_CompositeHexa_3D(); 00046 00047 virtual bool Compute(SMESH_Mesh& aMesh, 00048 const TopoDS_Shape& aShape); 00049 00050 virtual bool Evaluate(SMESH_Mesh & aMesh, const TopoDS_Shape & aShape, 00051 MapShapeNbElems& aResMap); 00052 00053 virtual bool CheckHypothesis(SMESH_Mesh& aMesh, 00054 const TopoDS_Shape& aShape, 00055 Hypothesis_Status& aStatus); 00056 00057 private: 00058 // private fields 00059 }; 00060 00061 #endif