1 #ifndef IVE_GEODE
2 #define IVE_GEODE 1
3 
4 #include <osg/Geode>
5 #include "ReadWrite.h"
6 
7 namespace ive{
8 class Geode : public ReadWrite, public osg::Geode{
9 public:
10 	void write(DataOutputStream* out);
11 	void read(DataInputStream* in);
12 };
13 }
14 
15 #endif
16