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 |
|
---|
11 | namespace FROG{
|
---|
12 |
|
---|
13 | class BaseColl : public Base{
|
---|
14 | public:
|
---|
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.