Skip to content
Snippets Groups Projects
Commit 76a0fd44 authored by Martin Beseda's avatar Martin Beseda
Browse files

ENH: Added serialization to the class NeuronBinary.

parent cd1bf347
No related branches found
No related tags found
No related merge requests found
......@@ -17,9 +17,13 @@
*/
class NeuronBinary:public Neuron {
friend class boost::serialization::access;
private:
protected:
template<class Archive>
void serialize(Archive & ar, const unsigned int version);
void serialize(Archive & ar, const unsigned int version){
//TODO separate implementation to NeuronLogistic.cpp!
ar & boost::serialization::base_object<Neuron>(*this);
};
public:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment