1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 09:15:38 +01:00
Grid/lib/serialisation/Serialisation.h

25 lines
664 B
C
Raw Normal View History

#ifndef GRID_SERIALISATION_READER_H
#define GRID_SERIALISATION_READER_H
#include <serialisation/MacroMagic.h>
#include <serialisation/BaseIO.h>
#include <stdint.h>
2015-08-20 16:30:52 +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: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
//////////////////////////////////////////
namespace Grid {
2015-11-16 18:14:37 +00:00
typedef XmlReader DefaultReader;
typedef XmlWriter DefaultWriter;
}
#endif