#include <CGeneralData.h>
Inheritance diagram for CGeneralData:

Public Member Functions | |
| CGeneralData () | |
| The constructor does not do anything. | |
| virtual | ~CGeneralData ()=0 |
| The destructor is also empty. | |
| virtual void | GetData ()=0 |
| virtual void | GetData (const std::string filename)=0 |
| virtual void | WriteData (const std::string filename)=0 |
Definition at line 10 of file CGeneralData.h.
| CGeneralData::CGeneralData | ( | ) |
| CGeneralData::~CGeneralData | ( | ) | [pure virtual] |
| virtual void CGeneralData::GetData | ( | ) | [pure virtual] |
Declaration for GetData() without any parameter. This function is intended for use with objects that read in data that is generated within the program.
Implemented in C1DAnisoMTSynthData, C1DMTSynthData, CMTStation, BirrpAsciiFormat, CsvFormat, LemiTsFormat, MtuFilter, MtuFormat, FkModel, PsDoublModel, ResPkModel, and SeismicModel.
| virtual void CGeneralData::GetData | ( | const std::string | filename | ) | [pure virtual] |
Declaration for GetData() that reads data from a file. This is intended for use with external data, such as recorded data, or synthetic data from external programs.
Implemented in CMTStation, BirrpAsciiFormat, CsvFormat, LemiTsFormat, MtuFilter, MtuFormat, FkModel, PsDoublModel, ResPkModel, and SeismicModel.
| virtual void CGeneralData::WriteData | ( | const std::string | filename | ) | [pure virtual] |
The abstract declaration for a method that writes the data to a file. Therefore no version without a filename is present
Implemented in CMTStation, BirrpAsciiFormat, CsvFormat, LemiTsFormat, MtuFilter, MtuFormat, FkModel, PsDoublModel, ResPkModel, and SeismicModel.
1.5.1