Bridge++  Ver. 1.1.x
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
fieldIO_Fortran.h
Go to the documentation of this file.
1 
10 #ifndef FIELDIO_FORTRAN_INCLUDED
11 #define FIELDIO_FORTRAN_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 
51 class FieldIO_Fortran : public FieldIO
52 {
53  public:
54  FieldIO_Fortran(const IO_Format::Format *format) : FieldIO(format)
55  {
56  }
57 
58  void read_file(Field *v, std::string filename);
59  void write_file(Field *v, std::string filename);
60 };
61 #endif