AnimatLab  2
Test
TestObject.h
1 #pragma once
2 using namespace StdUtils;
3 
4 class TestObject : public CStdSerialize
5 {
6 public:
7  TestObject(void);
8  virtual ~TestObject(void);
9 
10  virtual CStdSerialize *Clone();
11  virtual void Trace(std::ostream &oOs);
12  virtual void Load(CStdXml &oXml);
13  virtual void Save(CStdXml &oXml);
14 };
15 
A standard xml manipulation class.
Definition: StdXml.h:19
Namespace for the standard utility objects.
Definition: MarkupSTL.cpp:19
Standard serialize class.
Definition: StdSerialize.h:20