Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef MITKPROPERTIES_H_HEADER_INCLUDED
00020 #define MITKPROPERTIES_H_HEADER_INCLUDED
00021
00022 #include "mitkGenericProperty.h"
00023 #include "mitkVector.h"
00024 #include "mitkLookupTables.h"
00025
00026 namespace mitk {
00027
00028 mitkSpecializeGenericProperty(BoolProperty,bool,false);
00029
00030 mitkSpecializeGenericProperty(IntProperty,int,0);
00031
00032 mitkSpecializeGenericProperty(FloatProperty,float,0.0f);
00033
00034 mitkSpecializeGenericProperty(DoubleProperty,double,0.0);
00035
00036 mitkSpecializeGenericProperty(Vector3DProperty,Vector3D,Vector3D(0.0f));
00037
00038 mitkSpecializeGenericProperty(Point3dProperty,Point3D,Point3D::BaseArray::Filled(0.0f).GetDataPointer() );
00039
00040 mitkSpecializeGenericProperty(Point4dProperty,Point4D,Point4D::BaseArray::Filled(0.0f).GetDataPointer() );
00041
00042 mitkSpecializeGenericProperty(Point3iProperty,Point3I,Point3I::BaseArray::Filled(0).GetDataPointer() );
00043
00044 mitkSpecializeGenericProperty(FloatLookupTableProperty, FloatLookupTable, FloatLookupTable());
00045 mitkSpecializeGenericProperty(BoolLookupTableProperty, BoolLookupTable, BoolLookupTable());
00046 mitkSpecializeGenericProperty(IntLookupTableProperty, IntLookupTable, IntLookupTable());
00047 mitkSpecializeGenericProperty(StringLookupTableProperty, StringLookupTable, StringLookupTable());
00052 }
00053 #endif