Salome HOME
Color Number (Color Group) parameter is returned for compatibility
[modules/smesh.git] / src / SMDS / SMDSAbs_ElementType.hxx
index 94319f90c35875c8a39e7cdfb6c9a3a9214c0e3a..0ce02cd9a49137deac3727e2c512817a134e0798 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
 //
 //
 //
 /// Type (node, edge, face or volume) of elements
 ///////////////////////////////////////////////////////////////////////////////
 enum SMDSAbs_ElementType
-{ 
+{
        SMDSAbs_All,
        SMDSAbs_Node,
        SMDSAbs_Edge,
        SMDSAbs_Face,
-       SMDSAbs_Volume
+       SMDSAbs_Volume,
+        SMDSAbs_NbElementTypes
+};
+
+enum SMDSAbs_ElementOrder {
+  ORDER_ANY,          /*! entities of any order */
+  ORDER_LINEAR,       /*! entities of 1st order */
+  ORDER_QUADRATIC     /*! entities of 2nd order */
 };
 
 #endif