2015-08-20 16:21:26 +01:00
|
|
|
#ifndef GRID_SERIALISATION_READER_H
|
|
|
|
#define GRID_SERIALISATION_READER_H
|
|
|
|
|
|
|
|
#include <serialisation/MacroMagic.h>
|
2015-08-21 10:06:33 +01:00
|
|
|
#include <serialisation/BaseIO.h>
|
2015-09-23 13:23:45 +01:00
|
|
|
#include <stdint.h>
|
2015-08-20 16:21:26 +01:00
|
|
|
|
2015-08-20 16:30:52 +01:00
|
|
|
//////////////////////////////////////////
|
2015-08-20 16:21:26 +01:00
|
|
|
// Todo:
|
2015-08-20 16:30:52 +01:00
|
|
|
//////////////////////////////////////////
|
2015-08-20 23:04:38 +01:00
|
|
|
#include <serialisation/BinaryIO.h>
|
|
|
|
#include <serialisation/TextIO.h>
|
|
|
|
//#include <serialisation/JsonIO.h>
|
|
|
|
//#include <serialisation/YamlIO.h>
|
|
|
|
#include <serialisation/XmlIO.h>
|
2015-08-20 16:21:26 +01:00
|
|
|
|
2015-08-20 16:30:52 +01:00
|
|
|
//////////////////////////////////////////
|
2015-08-20 23:04:38 +01:00
|
|
|
// Select the default serialiser use ifdef's
|
2015-08-20 16:30:52 +01:00
|
|
|
//////////////////////////////////////////
|
2015-08-20 16:21:26 +01:00
|
|
|
namespace Grid {
|
2015-11-16 18:14:37 +00:00
|
|
|
typedef XmlReader DefaultReader;
|
|
|
|
typedef XmlWriter DefaultWriter;
|
2015-08-20 16:21:26 +01:00
|
|
|
}
|
|
|
|
#endif
|