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 FRAMEOFREFERENCEUIDMANAGER_H_HEADER_INCLUDED_C1EBD0AD
00020 #define FRAMEOFREFERENCEUIDMANAGER_H_HEADER_INCLUDED_C1EBD0AD
00021
00022 #include "mitkCommon.h"
00023 #include "MitkExtExports.h"
00024 #include <vector>
00025 #include <string>
00026
00027 namespace mitk {
00028
00029
00030
00031
00032
00033
00034 class MitkExt_EXPORT FrameOfReferenceUIDManager
00035 {
00036 public:
00037 typedef std::string FrameOfReferenceUIDType;
00038 private:
00039 static std::vector<FrameOfReferenceUIDType> m_FrameOfReferenceUIDs;
00040 public:
00041 static unsigned int AddFrameOfReferenceUID(const char* forUID);
00042 static const char* GetFrameOfReferenceUID(unsigned int geometryFrameOfReferenceID);
00043 FrameOfReferenceUIDManager();
00044 ~FrameOfReferenceUIDManager();
00045 };
00046
00047 }
00048
00049 #endif