/*
QtWagon: a project about 3D objects.
Science and technology promotion license applied. Third party license automatically cascaded.
Zhikai Wang/ www.heteroclinic.net 2013
You can do anything with this file or any file(s) published as part QtWagon project, given this header is kept.
*/
#include "qtmovingobjectSingleton.h"
qtmovingobjectSingleton *  qtmovingobjectSingleton::instance = NULL;

	qtmovingobjectSingleton::qtmovingobjectSingleton() {
		member = new qtMovingObject();
		gmvopt = new glMovingObjectf();
		member->setMovingObjPt(gmvopt);
		drawablesSingleton::getInstance()->add(gmvopt);
	};