Skip to content
Snippets Groups Projects
NeuronConstantSerialization.h 1.38 KiB
Newer Older
  • Learn to ignore specific revisions
  • //
    // Created by martin on 9/17/18.
    //
    
    
    #ifndef LIB4NEURO_NEURON_CONSTANT_SERIALIZATION_H
    #define LIB4NEURO_NEURON_CONSTANT_SERIALIZATION_H
    
    
    #include <boost/serialization/base_object.hpp>
    #include <boost/archive/text_oarchive.hpp>
    #include <boost/archive/text_iarchive.hpp>
    #include <boost/serialization/export.hpp>
    
    #include "NeuronConstant.h"
    
    BOOST_CLASS_EXPORT_KEY(lib4neuro::NeuronConstant);
    
    namespace lib4neuro {
        struct NeuronConstant::access {
            template<class Archive>
            static void serialize(Archive &ar, NeuronConstant &n, const unsigned int version) {
                ar & boost::serialization::base_object<Neuron>(n);
                ar & n.p;
            }
        };
    }
    
    
    namespace boost {
        namespace serialization {
    
            /**
             * Serialization function
             * @tparam Archive Boost library template
             * @param ar Boost parameter - filled automatically during serialization!
             * @param n NeuronConstant instance
             * @param version Boost parameter - filled automatically during serialization!
             */
            template<class Archive>
    
            void serialize(Archive & ar, lib4neuro::NeuronConstant& n, const unsigned int version)
    
                lib4neuro::NeuronConstant::access::serialize(ar, n, version);
    
            }
    
        } // namespace serialization
    } // namespace boost
    
    
    #endif //LIB4NEURO_NEURON_SERIALIZATION_H