Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
mitkFileSeriesReader.h
Go to the documentation of this file.
1 /*===================================================================
2 
3 The Medical Imaging Interaction Toolkit (MITK)
4 
5 Copyright (c) German Cancer Research Center,
6 Division of Medical and Biological Informatics.
7 All rights reserved.
8 
9 This software is distributed WITHOUT ANY WARRANTY; without
10 even the implied warranty of MERCHANTABILITY or FITNESS FOR
11 A PARTICULAR PURPOSE.
12 
13 See LICENSE.txt or http://www.mitk.org for details.
14 
15 ===================================================================*/
16 
17 #ifndef __MITK_FILE_SERIES_READER__H_
18 #define __MITK_FILE_SERIES_READER__H_
19 
20 #include <MitkLegacyIOExports.h>
21 #include <mitkCommon.h>
22 #include <mitkFileReader.h>
23 #include <string>
24 #include <vector>
25 
26 namespace mitk
27 {
36  {
37  public:
39 
40  typedef std::vector<std::string> MatchedFileNames;
41 
42  virtual MatchedFileNames GetMatchedFileNames();
43 
44  protected:
46 
47  virtual ~FileSeriesReader();
48 
49  virtual bool GenerateFileList();
50 
51  std::string m_FileName;
52 
53  std::string m_FilePrefix;
54 
55  std::string m_FilePattern;
56 
57  MatchedFileNames m_MatchedFileNames;
58  };
59 }
60 
61 #endif
#define MITKLEGACYIO_EXPORT
DataCollection - Class to facilitate loading/accessing structured data.
#define mitkClassMacro(className, SuperClassName)
Definition: mitkCommon.h:44
Interface class of readers that read from files.
MatchedFileNames m_MatchedFileNames