2011-06-06 08:15:39 +00:00
|
|
|
// Copyright (C) 2010-2011 CEA/DEN, EDF R&D, OPEN CASCADE
|
2009-02-17 05:27:49 +00:00
|
|
|
//
|
2011-06-06 08:15:39 +00:00
|
|
|
// 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.
|
2009-02-17 05:27:49 +00:00
|
|
|
//
|
2011-06-06 08:15:39 +00:00
|
|
|
// 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.
|
2003-05-19 13:49:00 +00:00
|
|
|
//
|
2011-06-06 08:15:39 +00:00
|
|
|
// 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
|
2003-05-19 13:49:00 +00:00
|
|
|
//
|
2011-06-06 08:15:39 +00:00
|
|
|
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
2003-07-10 09:49:12 +00:00
|
|
|
//
|
2010-05-14 15:32:37 +00:00
|
|
|
|
2009-02-17 05:27:49 +00:00
|
|
|
// SMESH SMDS : implementaion of Salome mesh data structure
|
2003-07-10 09:49:12 +00:00
|
|
|
// File : SMDS_MeshEdge.hxx
|
|
|
|
// Module : SMESH
|
2009-02-17 05:27:49 +00:00
|
|
|
//
|
2003-05-19 13:49:00 +00:00
|
|
|
#ifndef _SMDS_MeshEdge_HeaderFile
|
|
|
|
#define _SMDS_MeshEdge_HeaderFile
|
|
|
|
|
2008-03-07 07:47:05 +00:00
|
|
|
#include "SMESH_SMDS.hxx"
|
|
|
|
|
2010-11-29 13:20:53 +00:00
|
|
|
#include "SMDS_MeshCell.hxx"
|
2003-05-19 13:49:00 +00:00
|
|
|
|
2010-11-29 13:20:53 +00:00
|
|
|
class SMDS_EXPORT SMDS_MeshEdge:public SMDS_MeshCell
|
2003-09-03 17:30:36 +00:00
|
|
|
{
|
2011-01-18 10:49:35 +00:00
|
|
|
|
2003-09-03 17:30:36 +00:00
|
|
|
public:
|
2010-11-29 13:20:53 +00:00
|
|
|
SMDSAbs_ElementType GetType() const;
|
|
|
|
virtual vtkIdType GetVtkType() const;
|
2003-05-19 13:49:00 +00:00
|
|
|
};
|
|
|
|
#endif
|