00001 // Copyright (C) 2008 Timothy Moore timoore@redhat.com 00002 // 00003 // This program is free software; you can redistribute it and/or 00004 // modify it under the terms of the GNU General Public License as 00005 // published by the Free Software Foundation; either version 2 of the 00006 // License, or (at your option) any later version. 00007 // 00008 // This program is distributed in the hope that it will be useful, but 00009 // WITHOUT ANY WARRANTY; without even the implied warranty of 00010 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00011 // General Public License for more details. 00012 // 00013 // You should have received a copy of the GNU General Public License 00014 // along with this program; if not, write to the Free Software 00015 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 00016 00017 #ifndef SIMGEAR_PASS_HXX 00018 #define SIMGEAR_PASS_HXX 1 00019 00020 #include <osg/ref_ptr> 00021 #include <osg/StateSet> 00022 00023 namespace simgear 00024 { 00025 00026 class Pass : public osg::StateSet 00027 { 00028 public: 00029 META_Object(simgear,Pass); 00030 Pass() {} 00031 Pass(const Pass& rhs, 00032 const osg::CopyOp& copyop = osg::CopyOp::SHALLOW_COPY); 00033 }; 00034 00035 } 00036 00037 #endif