[MOAB-dev] r5907 - MOAB/trunk/src/moab

milad at mcs.anl.gov milad at mcs.anl.gov
Wed Dec 12 10:32:35 CST 2012


Author: milad
Date: 2012-12-12 10:32:35 -0600 (Wed, 12 Dec 2012)
New Revision: 5907

Modified:
   MOAB/trunk/src/moab/Core.hpp
   MOAB/trunk/src/moab/Interface.hpp
Log:
Undeprecated "tag_get_handle" which provides the tag handle given the
tag name.

Modified: MOAB/trunk/src/moab/Core.hpp
===================================================================
--- MOAB/trunk/src/moab/Core.hpp	2012-12-07 22:54:46 UTC (rev 5906)
+++ MOAB/trunk/src/moab/Core.hpp	2012-12-12 16:32:35 UTC (rev 5907)
@@ -684,14 +684,12 @@
 
    /**\brief Gets the tag handle corresponding to a name
     *
-    *\deprecated Use tag_get_handle instead
-    *
     * If a tag of that name does not exist, returns MB_TAG_NOT_FOUND
     *   \param tag_name Name of the desired tag. 
     *   \param tag_handle Tag handle corresponding to <em>tag_name</em>
     */ 
   virtual ErrorCode tag_get_handle( const char *tag_name, 
-                                    Tag &tag_handle ) const MB_DEPRECATED;
+                                    Tag &tag_handle ) const;
 
   //! Get handles for all tags defined on this entity
   virtual ErrorCode tag_get_tags_on_entity(const EntityHandle entity,

Modified: MOAB/trunk/src/moab/Interface.hpp
===================================================================
--- MOAB/trunk/src/moab/Interface.hpp	2012-12-07 22:54:46 UTC (rev 5906)
+++ MOAB/trunk/src/moab/Interface.hpp	2012-12-12 16:32:35 UTC (rev 5907)
@@ -1376,14 +1376,12 @@
 
     /**\brief Gets the tag handle corresponding to a name
        
-       \deprecated Use \b tag_get_handle(const char*,int,MB_DATA_TYPE,Tag&,...) instead
-    
         If a tag of that name does not exist, returns MB_TAG_NOT_FOUND
         \param tag_name Name of the desired tag. 
         \param tag_handle Tag handle corresponding to <em>tag_name</em>
     */ 
   virtual ErrorCode tag_get_handle( const char *tag_name, 
-                                    Tag &tag_handle ) const MB_DEPRECATED = 0;
+                                    Tag &tag_handle ) const = 0;
 
     /**\brief Get the size of the specified tag
        



More information about the moab-dev mailing list