Fork me on GitHub

source: svn/trunk/Utilities/frog/BaseColl.h@ 804

Last change on this file since 804 was 585, checked in by cp3-support, 12 years ago

removed old FROG utility

File size: 535 bytes
Line 
1// FROG_Element_Base.h: Contains everything related to an element to be written in a file :
2// type, size, data
3// And a vector of daughters
4//////////////////////////////////////////////////////////////////////
5
6#ifndef _FROG_BASECOLL_H__
7#define _FROG_BASECOLL_H__
8
9#include "Base.h"
10
11namespace FROG{
12
13class BaseColl : public Base{
14public:
15 virtual unsigned int chunkId(){ return 55555;}
16 virtual bool isCompactible() { return false; }
17
18 BaseColl(){
19 }
20};
21
22}//FROG Namespace
23#endif
24
Note: See TracBrowser for help on using the repository browser.