Added missing TestClass::Clone() needed by DeepCopy (OwnershipPolicy)

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@82 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
jbouchard 2002-11-07 19:09:04 +00:00
parent 73aa0f6d88
commit 580089f04d

View file

@ -48,6 +48,11 @@ public:
delete this;
}
TestClass* Clone()
{
return new TestClass(*this);
}
public:
static int instances;