Bridge++  Ver. 1.3.x
fieldIO_Text.h
Go to the documentation of this file.
1 
14 #ifndef FIELDIO_TEXT_INCLUDED
15 #define FIELDIO_TEXT_INCLUDED
16 
17 #include "fieldIO.h"
18 
20 
32 class FieldIO_Text : public FieldIO
33 {
34  public:
35  static const std::string class_name;
36 
37  public:
38  FieldIO_Text(const IO_Format::Format *format) : FieldIO(format)
39  {}
40 
41  void read_file(Field *v, string filename);
42  void write_file(Field *v, string filename);
43 };
44 #endif
static const std::string class_name
Definition: fieldIO_Text.h:35
void read_file(Field *v, string filename)
Container of Field-type object.
Definition: field.h:39
FieldIO_Text class for file I/O of Field data in plain text format.
Definition: fieldIO_Text.h:32
FieldIO_Text(const IO_Format::Format *format)
Definition: fieldIO_Text.h:38
void write_file(Field *v, string filename)
FieldIO class for file I/O of space-time distributed data.
Definition: fieldIO.h:53