V-ART
xmlprinter.h
Go to the documentation of this file.
1 
5 #ifndef VART_XMLPRINTER_H
6 #define VART_XMLPRINTER_H
7 
8 #include "vart/snoperator.h"
9 #include <iostream>
10 
11 namespace VART {
12  class Joint;
17  class XmlPrinter : public SNOperator
18  {
19  public:
20  // PUBLIC STATIC METHODS
21  // PUBLIC METHODS
22  XmlPrinter();
23  virtual void OperateOn(SceneNode* nodePtr);
24  virtual void OperateOn(Joint* nodePtr);
25  protected:
26  // PROTECTED STATIC METHODS
27  // PROTECTED METHODS
28  // PROTECTED STATIC ATTRIBUTES
29  static std::ostream* outputPtr;
30  // PROTECTED ATTRIBUTES
31  }; // end class declaration
32 } // end namespace
33 
34 #endif
Base class for objects that compose a scene graph.
Definition: scenenode.h:25
Representation of joints.
Definition: joint.h:34
Objects that process scene nodes.
Definition: snoperator.h:19
Header file for V-ART class "SnOperator".
static std::ostream * outputPtr
Definition: xmlprinter.h:29
virtual void OperateOn(SceneNode *nodePtr)
Definition: xmlprinter.cpp:17