// C++ header file - Open Scene Graph Training - Copyright (C) 2004 Don Burns // Distributed under the terms of the GNU LIBRARY GENERAL PUBLIC LICENSE (LGPL) // as published by the Free Software Foundation. #ifndef CUBE_H #define CUBE_H #include class Cube : public osg::Geode { public: Cube(); }; #endif