From a7f0f3f49d5b3b69c6c4dac9d4168f35ae45250e Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 1 Jul 2009 14:49:30 +0000 Subject: [PATCH] Added constructor and destructor body --- include/osgManipulator/CommandManager | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/osgManipulator/CommandManager b/include/osgManipulator/CommandManager index 872fd3c8b..59cee7e6a 100644 --- a/include/osgManipulator/CommandManager +++ b/include/osgManipulator/CommandManager @@ -30,7 +30,7 @@ namespace osgManipulator { class CommandManager : public osg::Referenced { public: - CommandManager(); + CommandManager() {} bool connect(Dragger& dragger, Selection& selection) { @@ -74,7 +74,7 @@ class CommandManager : public osg::Referenced protected: - virtual ~CommandManager(); + virtual ~CommandManager() {} };