OpenCOVER
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
NodeDumpVisitor.h
Go to the documentation of this file.
1 /* This file is part of COVISE.
2 
3  You can use it under the terms of the GNU Lesser General Public License
4  version 2.1 or later, see lgpl-2.1.txt.
5 
6  * License: LGPL 2+ */
7 
8 #ifndef VRUI_UTIL_NODEDUMPVISITOR_H
9 #define VRUI_UTIL_NODEDUMPVISITOR_H
10 
11 #include <util/coTypes.h>
12 
13 #include <osg/NodeVisitor>
14 #include <osg/Node>
15 
16 namespace vrui
17 {
18 
19 class OSGVRUIEXPORT NodeDumpVisitor : public osg::NodeVisitor
20 {
21 public:
23 
25  virtual void apply(osg::Node &node);
26 
27 private:
28  int level;
29 };
30 
31 }
32 #endif
Definition: NodeDumpVisitor.h:19