// FROG_Element_Base.h: Contains everything related to an element to be written in a file : // type, size, data // And a vector of daughters ////////////////////////////////////////////////////////////////////// #ifndef _FROG_BASECOLL_H__ #define _FROG_BASECOLL_H__ #include "Base.h" namespace FROG{ class BaseColl : public Base{ public: virtual unsigned int chunkId(){ return 55555;} virtual bool isCompactible() { return false; } BaseColl(){ } }; }//FROG Namespace #endif