Medical Imaging Interaction Toolkit  2018.4.99-389bf124
Medical Imaging Interaction Toolkit
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 (DKFZ)
6 All rights reserved.
7 
8 Use of this source code is governed by a 3-clause BSD license that can be
9 found in the LICENSE file.
10 
11 ============================================================================*/
12 
13 #ifndef __MITK_FILE_SERIES_READER__H_
14 #define __MITK_FILE_SERIES_READER__H_
15 
16 #include <MitkLegacyIOExports.h>
17 #include <mitkCommon.h>
18 #include <mitkFileReader.h>
19 #include <string>
20 #include <vector>
21 
22 namespace mitk
23 {
32  {
33  public:
35 
36  typedef std::vector<std::string> MatchedFileNames;
37 
38  virtual MatchedFileNames GetMatchedFileNames();
39 
40  protected:
42 
43  ~FileSeriesReader() override;
44 
45  virtual bool GenerateFileList();
46 
47  std::string m_FileName;
48 
49  std::string m_FilePrefix;
50 
51  std::string m_FilePattern;
52 
53  MatchedFileNames m_MatchedFileNames;
54  };
55 }
56 
57 #endif
#define MITKLEGACYIO_EXPORT
DataCollection - Class to facilitate loading/accessing structured data.
std::vector< std::string > MatchedFileNames
#define mitkClassMacro(className, SuperClassName)
Definition: mitkCommon.h:40
Interface class of readers that read from files.
MatchedFileNames m_MatchedFileNames