WIP: Serialization
This commit is contained in:
@@ -8,6 +8,18 @@
|
||||
#include <boost/filesystem.hpp>
|
||||
#include <boost/system/error_code.hpp>
|
||||
#include <boost/filesystem/fstream.hpp>
|
||||
//Boost serialization test:
|
||||
#include <boost/archive/binary_oarchive.hpp>
|
||||
#include <boost/archive/binary_iarchive.hpp>
|
||||
#include <boost/serialization/map.hpp>
|
||||
#include <boost/serialization/bitset.hpp>
|
||||
#include <boost/serialization/string.hpp>
|
||||
|
||||
//YAS Serialization:
|
||||
#include <yas/serialize.hpp>
|
||||
#include <yas/std_types.hpp>
|
||||
|
||||
#include <chrono> //Debug, for measuring execution times
|
||||
|
||||
#include <Magick++.h>
|
||||
#include <string>
|
||||
@@ -15,11 +27,13 @@
|
||||
#include "Mutation.h"
|
||||
|
||||
using namespace std;
|
||||
using namespace chrono;
|
||||
using namespace Magick;
|
||||
|
||||
//ENUM_STRING(descriptorss, (totalColors)(averageColor)(numDescriptors))
|
||||
|
||||
namespace fs = boost::filesystem;
|
||||
namespace ar = boost::archive;
|
||||
|
||||
//Manager class for descriptors.
|
||||
//Contains functions to load, store, process
|
||||
|
||||
Reference in New Issue
Block a user