Home | History | Annotate | Download | only in tests

Lines Matching refs:TestObject

22 class TestObject
25 TestObject(CONST TestObject& inObj);
26 TestObject();
27 ~TestObject();
29 TestObject& operator=(CONST TestObject& inObj);
38 TestObject::TestObject(CONST TestObject& inObj)
43 //printf("%p (%d) -- TestObject(const TestObject&) called", this, _version);
47 TestObject::TestObject()
50 //printf("%p (%d) -- TestObject() called\n", this, _version);
54 TestObject::~TestObject()
56 //printf("%p -- ~TestObject() called\n", this);
61 TestObject& TestObject::operator=(CONST TestObject& inObj)
69 void TestObject::test(void) {
79 TestObject one;