]> Creatis software - creaImageIO.git/blobdiff - src2/creaImageIOTreeAttributeDescriptor.h
Documentation Updated
[creaImageIO.git] / src2 / creaImageIOTreeAttributeDescriptor.h
index 1a68bfa1f3e69c5593870cb86b5bda647516c8c9..9a2f082c6dc403bf43dbe581c9c2689971bd2739 100644 (file)
@@ -9,16 +9,19 @@ namespace creaImageIO
 
   namespace tree
   {
+         /**
+       * \ingroup Model
+       */
     //=====================================================================
-    /// Descriptor of an attribute of a node of a tree (name, dicom group/element)
+    /// Descriptor of an attribute of a node of a Tree (name, dicom group/element)
     class AttributeDescriptor
     {    
     public:
       /// Flags
       /// The attribute is hidden (not visible to user)
       static const unsigned int PRIVATE;
-      /// The attribute enters in unique identifier constitution (KEY)
-      static const unsigned int KEY;
+      /// The attribute enters in unique identifier constitution 
+      static const unsigned int IDENTIFIER;
       /// The attribute enters in label constitution (for printing)
       static const unsigned int LABEL;
 
@@ -84,16 +87,7 @@ namespace creaImageIO
 } // EO namespace creaImageIO
 
 
-/*
-//=====================================================================
-inline std::ostream& operator<<(std::ostream& s, 
-const creaImageIO::tree::AttributeDescriptor& d)
-{
-s << "[" << d.key << ":" << d.name << "]";
-return s;
-}
-//=====================================================================
-*/
+
 
 
 #endif // #ifndef __creaImageIOTreeAttributeDescriptor_h_INCLUDED__