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 #ifndef __mitkBaseDataIO_h
00019 #define __mitkBaseDataIO_h
00020
00021 #include "mitkBaseData.h"
00022
00023 #include "itkObject.h"
00024
00025 namespace mitk
00026 {
00027
00034 class MITK_CORE_EXPORT BaseDataIO : public itk::Object
00035 {
00036 public:
00037
00039 typedef BaseDataIO Self;
00040 typedef itk::Object Superclass;
00041 typedef itk::SmartPointer<Self> Pointer;
00042 typedef itk::SmartPointer<const Self> ConstPointer;
00043
00047 itkTypeMacro(BaseDataIO, Object);
00048
00050 static std::vector<mitk::BaseData::Pointer> LoadBaseDataFromFile(const std::string path, const std::string filePrefix, const std::string filePattern, bool series);
00051
00052 protected:
00053 BaseDataIO();
00054 ~BaseDataIO();
00055
00056 private:
00057 BaseDataIO(const Self&);
00058 void operator=(const Self&);
00059
00060 };
00061
00062
00063 }
00064
00065 #endif
00066
00067