source: XMLIO_V2/dev/dev_rv/src/XMLIO/axis.hpp @ 125

Last change on this file since 125 was 125, checked in by hozdoba, 14 years ago
File size: 733 bytes
Line 
1#ifndef __AXIS__
2#define __AXIS__
3
4using XMLIOSERVER::XML::XMLNode;
5using XMLIOSERVER::XML::THashAttributes;
6
7namespace XMLIOSERVER
8{
9   class CAxis: public ObjectTemplate<CAxis>, public AxisAttribut
10   {
11      public:
12
13         CAxis(void) : ObjectTemplate<CAxis>(), AxisAttribut()
14         {/* Ne rien faire de plus */}
15         CAxis(const string& _id) : ObjectTemplate<CAxis>(_id), AxisAttribut()
16         {/* Ne rien faire de plus */}
17
18         static string GetName(void) {return ("axis"); }
19         static string GetDefName(void)  { return (CAxis::GetName()); }
20
21         virtual ~CAxis(void)
22         { /* Ne rien faire de plus */ }
23
24   }; // class CAxis
25
26} // namespace XMLIOSERVER
27
28DECLARE_GROUP(Axis)
29
30#endif // __AXIS__
Note: See TracBrowser for help on using the repository browser.