00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef SIMGEAR_NODEANDDRAWABLEVISITOR_HXX
00022 #define SIMGEAR_NODEANDDRAWABLEVISITOR_HXX 1
00023
00024 #include <osg/Drawable>
00025 #include <osg/NodeVisitor>
00026
00027 namespace simgear
00028 {
00031 class NodeAndDrawableVisitor : public osg::NodeVisitor
00032 {
00033 public:
00034 NodeAndDrawableVisitor(osg::NodeVisitor::TraversalMode tm);
00035 NodeAndDrawableVisitor(osg::NodeVisitor::VisitorType type,
00036 osg::NodeVisitor::TraversalMode tm);
00037 virtual ~NodeAndDrawableVisitor();
00038 using osg::NodeVisitor::apply;
00039 virtual void apply(osg::Node& node);
00045 virtual void apply(osg::Drawable& drawable);
00046
00047 void traverse(osg::Node& node);
00048 };
00049
00050 }
00051 #endif