MFace
BOOSTの助けを借りてクラスをシリアライズしようとしましたが、
// class of the face
class MFace
{
public:
//constructor
MFace();
private:
//! Vector of the face nodes
mymath::Vector<DG::MNode*> Nodes;
friend class boost::serialization::access;
template<class Archive>
void serialize(Archive & ar, const unsigned int version){
//! Vector of the face nodes
ar & Nodes;
}
};
しかし、クラスには別のクラスが含まれています
mymath::Vector<MNode*> Nodes;
Nodes
だから、アーカイブに書き込もうとすると
//create a face
MFace Face;
//archive output file
std::ofstream ofs("output.txt");
boost::archive::text_oarchive ar(ofs);
// Write data to archive
ar & Face;
...
コンパイラは私にエラーを与えます
error: ‘class mymath::Vector<DG::MNode*>’ has no member named ‘serialize’
MFace が使用する各クラス (特に mymath::Vector と MNodes) に別の「シリアル化」を追加し、それが何をすべきかを説明する必要がありますか、それとも他のクラスに触れずに MFace 内で解決することは可能ですか?
インクルードは
#include <boost/archive/text_oarchive.hpp>
#include <boost/archive/text_iarchive.hpp>
//contains mymath::Vector<>
#include "mymath/vector.h"
//containes MNodes
#include "MNode.h"
#include <fstream>