libcdx: Interfaces to the Channel Data Exchange (CDX) File Format
C++, Python, and Matlab library to exchange data for radio propagation channels
ReadFile.h
Go to the documentation of this file.
1 
6 #ifndef READCDXFILE_H_
7 #define READCDXFILE_H_
8 
9 #include "File.h"
10 
11 namespace CDX {
12 
16 class ReadFile: public File {
17 public:
18  ReadFile(std::string _file_name);
19  virtual ~ReadFile();
20 
21 protected:
23  std::vector<double> get_reference_delays(std::string link);
24 
25  std::map<std::string, std::vector<double> > ref_delays;
26 };
27 
28 } // end of namespace CDX
29 
30 #endif /* READCDXFILE_H_ */
Base class for the processing of Channel Data Exchange (CDX) files.
Definition: File.h:95
Base class for reading CDX files.
Definition: ReadFile.h:16
Contains all CDX classes and types.
Definition: File.cpp:19
std::vector< double > get_reference_delays(std::string link)
Definition: ReadFile.cpp:20