]> SALOME platform Git repositories - modules/smesh.git/blobdiff - src/SMDS/SMDSAbs_ElementType.hxx
Salome HOME
PAL14858 (The Mesh Info Dialog Box is too slow)
[modules/smesh.git] / src / SMDS / SMDSAbs_ElementType.hxx
index b9b9003b9849914c8550020c906ce739e2de6406..996b4a903c4116b18e566891c30b2ad6ddd95732 100644 (file)
@@ -16,7 +16,7 @@
 //  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.opencascade.org or email : webmaster@opencascade.org 
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 //
 //
 #ifndef _SMDSAbs_ElementType_HeaderFile
 #define _SMDSAbs_ElementType_HeaderFile
 
-enum SMDSAbs_ElementType { 
- SMDSAbs_All,
-SMDSAbs_Node,
-SMDSAbs_Edge,
-SMDSAbs_Face,
-SMDSAbs_Volume
+///////////////////////////////////////////////////////////////////////////////
+/// Type (node, edge, face or volume) of elements
+///////////////////////////////////////////////////////////////////////////////
+enum SMDSAbs_ElementType
+{
+       SMDSAbs_All,
+       SMDSAbs_Node,
+       SMDSAbs_Edge,
+       SMDSAbs_Face,
+       SMDSAbs_Volume
 };
 
-
-#ifndef _Standard_PrimitiveTypes_HeaderFile
-#include <Standard_PrimitiveTypes.hxx>
-#endif
+enum SMDSAbs_ElementOrder {
+  ORDER_ANY,          /*! entities of any order */
+  ORDER_LINEAR,       /*! entities of 1st order */
+  ORDER_QUADRATIC     /*! entities of 2nd order */
+};
 
 #endif