AnimatLab  2
Test
TestObject.cpp
1 #include "stdafx.h"
2 #include "TestObject.h"
3 
4 
5 TestObject::TestObject(void)
6 {
7 }
8 
9 
10 TestObject::~TestObject(void)
11 {
12 }
13 
15 {
16  return NULL;
17 }
18 
19 void TestObject::Trace(std::ostream &oOs)
20 {
21 }
22 
24 {
25  int i=5;
26  i=3;
27 }
28 
30 {
31 }
virtual void Load(CStdXml &oXml)
Loads this object from an xml packet.
Definition: TestObject.cpp:23
virtual void Trace(std::ostream &oOs)
Traces this object to an output stream.
Definition: TestObject.cpp:19
virtual CStdSerialize * Clone()
Makes a deep copy of this object.
Definition: TestObject.cpp:14
A standard xml manipulation class.
Definition: StdXml.h:19
virtual void Save(CStdXml &oXml)
Saves this object to an xml packet..
Definition: TestObject.cpp:29
Standard serialize class.
Definition: StdSerialize.h:20