Bridge++  Ver. 1.1.x
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
fieldIO_Text.h
Go to the documentation of this file.
1 
10 #ifndef FIELDIO_TEXT_INCLUDED
11 #define FIELDIO_TEXT_INCLUDED
12 
13 #include <string>
14 using std::string;
15 
16 #include "fieldIO.h"
17 #include "index_lex.h"
18 #include "field.h"
19 
21 
33 class FieldIO_Text : public FieldIO
34 {
35  public:
36  FieldIO_Text(const IO_Format::Format *format) : FieldIO(format)
37  {
38 // d_prefix = "conf_";
39 // d_postfix = ".txt";
40  }
41 
42  void read_file(Field *v, string filename);
43  void write_file(Field *v, string filename);
44 };
45 #endif