MeVisLab Toolbox Reference
mlObjMgrAttributeDefs.h
Go to the documentation of this file.
1 /*************************************************************************************
2 **
3 ** Copyright 2007, MeVis Medical Solutions AG
4 **
5 ** The user may use this file in accordance with the license agreement provided with
6 ** the Software or, alternatively, in accordance with the terms contained in a
7 ** written agreement between the user and MeVis Medical Solutions AG.
8 **
9 ** For further information use the contact form at https://www.mevislab.de/contact
10 **
11 **************************************************************************************/
12 
13 #ifndef ML_OBJ_MGR_ATTRIBUTE_DEFS_H
14 #define ML_OBJ_MGR_ATTRIBUTE_DEFS_H
15 
16 
18 
20 // Layers of information (L_: layer)
21 
22 #define L_GLOBAL "Global" // all objects: global infos
23 #define L_DESCRIPTION "Description" // descriptions, e.g. name
24 #define L_MEASURE "Measures" // all quantitative measures (numbers) about the object
25 
27 // Specific information in layer (I_: info)
28 
29 // L_GLOBAL
30 #define I_ID "Id" // unique container id of the object
31 
32 // L_DESCRIPTION
33 #define I_NAME "Name" // objects name (short descriptior, for listing of objects)
34 #define I_COMMENT "Comment" // some longer description/comment about the object
35 
36 // L_MEASURE
37 #define I_VOLUME "Volume"
38 
39 #endif // __mlObjMgrAttributeDefs_H