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