MITK-IGT
IGT Extension of MITK
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
mitkNavigationToolStorageDeserializer.h
Go to the documentation of this file.
1/*============================================================================
2
3The Medical Imaging Interaction Toolkit (MITK)
4
5Copyright (c) German Cancer Research Center (DKFZ)
6All rights reserved.
7
8Use of this source code is governed by a 3-clause BSD license that can be
9found in the LICENSE file.
10
11============================================================================*/
12
13#ifndef mitkNavigationToolStorageDeserializer_h
14#define mitkNavigationToolStorageDeserializer_h
15
16//itk headers
17#include <itkObjectFactory.h>
18
19//mitk headers
20#include <mitkCommon.h>
21#include <mitkDataStorage.h>
23#include <MitkIGTExports.h>
24
25namespace mitk {
32 class MITKIGT_EXPORT NavigationToolStorageDeserializer : public itk::Object
33 {
34 public:
36 mitkNewMacro1Param(Self,mitk::DataStorage::Pointer);
37
45 mitk::NavigationToolStorage::Pointer Deserialize(std::string filename);
46
47 itkGetMacro(ErrorMessage,std::string);
48
49 protected:
50 NavigationToolStorageDeserializer(mitk::DataStorage::Pointer dataStorage);
52
53 std::string m_ErrorMessage;
54
55 mitk::DataStorage::Pointer m_DataStorage;
56
57 std::string m_tempDirectory;
58
59 std::string convertIntToString(int i);
60
64 void decompressFiles(std::string file,std::string path);
65
66 };
67} // namespace mitk
68#endif
This class offers methods to load an object of the class NavigationToolStorage from the harddisc.
mitkNewMacro1Param(Self, mitk::DataStorage::Pointer)
mitkClassMacroItkParent(NavigationToolStorageDeserializer, itk::Object)
itkGetMacro(ErrorMessage, std::string)
IGT Exceptions.