[MOAB-dev] r4591 - MOAB/trunk/src/moab
tautges at mcs.anl.gov
tautges at mcs.anl.gov
Tue Mar 15 12:16:47 CDT 2011
Author: tautges
Date: 2011-03-15 12:16:47 -0500 (Tue, 15 Mar 2011)
New Revision: 4591
Modified:
MOAB/trunk/src/moab/Types.hpp
Log:
Removing c++-style comments.
Modified: MOAB/trunk/src/moab/Types.hpp
===================================================================
--- MOAB/trunk/src/moab/Types.hpp 2011-03-15 16:58:17 UTC (rev 4590)
+++ MOAB/trunk/src/moab/Types.hpp 2011-03-15 17:16:47 UTC (rev 4591)
@@ -56,19 +56,19 @@
/** Specify storage type for tags. See MOAB users guide for more information. */
enum TagType {
- MB_TAG_BIT = 0, //!< Tag size specified in bits, tag value is 8 bits or less
- MB_TAG_SPARSE= 1<<0, //!< Storage optimized for tags on a few entities
- MB_TAG_DENSE = 1<<1, //!< Storage optimized for tags on most entities of a type
- MB_TAG_MESH = 1<<2, //!< Storage for tags on no entities, only the root set/whole mesh.
- MB_TAG_BYTES = 1<<3, //!< Size is in number of bytes rather than number of values of \c DataType
- MB_TAG_VARLEN= 1<<4, //!< Create variable-length tag
- MB_TAG_CREAT = 1<<5, //!< Create tag if it does not already exist
- MB_TAG_EXCL = 1<<6, //!< Fail if TAG_CREATE and tag already exists
- MB_TAG_STORE = 1<<7, //!< Fail if tag exists and has different storage type
- MB_TAG_ANY = 1<<8, //!< Do not fail if size, type, or default value do not match.
- MB_TAG_NOOPQ = 1<<9 //!< Do not accept MB_TYPE_OPAQUE as a match for any type.
-// MB_TAG_NAME = 1<<10, //!< If TAG_CREAT, implementaiton may append a unique suffix to make name unique
-// MB_TAG_CNVRT = 1<<11, //!< Convert storage type if it does not match
+ MB_TAG_BIT = 0, /**< Tag size specified in bits, tag value is 8 bits or less */
+ MB_TAG_SPARSE= 1<<0, /**< Storage optimized for tags on a few entities */
+ MB_TAG_DENSE = 1<<1, /**< Storage optimized for tags on most entities of a type */
+ MB_TAG_MESH = 1<<2, /**< Storage for tags on no entities, only the root set/whole mesh. */
+ MB_TAG_BYTES = 1<<3, /**< Size is in number of bytes rather than number of values of \c DataType */
+ MB_TAG_VARLEN= 1<<4, /**< Create variable-length tag */
+ MB_TAG_CREAT = 1<<5, /**< Create tag if it does not already exist */
+ MB_TAG_EXCL = 1<<6, /**< Fail if TAG_CREATE and tag already exists */
+ MB_TAG_STORE = 1<<7, /**< Fail if tag exists and has different storage type */
+ MB_TAG_ANY = 1<<8, /**< Do not fail if size, type, or default value do not match. */
+ MB_TAG_NOOPQ = 1<<9 /**< Do not accept MB_TYPE_OPAQUE as a match for any type. */
+/**< MB_TAG_NAME = 1<<10, If TAG_CREAT, implementaiton may append a unique suffix to make name unique */
+/**< MB_TAG_CNVRT = 1<<11, Convert storage type if it does not match */
};
/** Specify data type for tags. */
More information about the moab-dev
mailing list