/* Surface class An OpenSceneGraph viewer for pyVolution .sww files. copyright (C) 2004 Geoscience Australia */ #ifndef SURFACE_H #define SURFACE_H #include #include #include #include class Surface { public: Surface(); virtual osg::Geode* get(){ return _node; } protected: osg::Geode* _node; osg::Geometry* _geom; osg::StateSet* _stateset; osg::Material* _material; virtual ~Surface(); }; #endif // SURFACE_H