XmlTextNode.h
Go to the documentation of this file.
1 /* -*- mode: c++ -*- */
13 #ifndef _XmlTextNode_H_
14 #define _XmlTextNode_H_
15 
16 #include "XmlNode.h"
17 
18 #include <string>
19 
20 namespace hippodraw {
21 
28 class MDL_HIPPOPLOT_API XmlTextNode : public virtual XmlNode
29 {
30 
31 private:
32 
34  XmlTextNode ( const XmlTextNode & );
35 
36 protected:
37 
39  XmlTextNode ();
40 
41 public:
42 
44  virtual ~XmlTextNode();
45 
48  virtual void setData ( const std::string & ) = 0;
49 };
50 
51 } // namespace hippodraw
52 
53 #endif // _XmlTextNode_H_

Generated for HippoDraw Class Library by doxygen