Added initializers

This commit is contained in:
Robert Osfield
2016-06-27 14:53:32 +01:00
parent c8a7ce4e52
commit 27595e9f02
3 changed files with 24 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
/* -*-c++-*-
/* -*-c++-*-
* Copyright (C) 2009 Cedric Pinson <cedric.pinson@plopbyte.net>
*
* This library is open source and may be redistributed and/or modified under
@@ -26,9 +26,15 @@ namespace osgAnimation
{
public:
RigTransform() {}
virtual ~RigTransform() {}
RigTransform(const RigTransform&, const osg::CopyOp&) {}
META_Object(osgAnimation,RigTransform)
virtual void operator()(RigGeometry&) {}
protected:
virtual ~RigTransform() {}
};
}

View File

@@ -32,7 +32,8 @@ namespace osgAnimation
public:
RigTransformHardware();
RigTransformHardware(const RigTransformHardware&,const osg::CopyOp&){};
RigTransformHardware(const RigTransformHardware& rth, const osg::CopyOp& copyop);
META_Object(osgAnimation,RigTransformHardware)