X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fobjectinstance.cpp;h=ef4afffeeab8c5a97753ab6800417d6c15478e4a;hp=78042bd1a8182de436d6963bf4d7e4dc512381b9;hb=HEAD;hpb=a361efc05fcad11b2918f3cd7abdebe794b131d8 diff --git a/source/objectinstance.cpp b/source/objectinstance.cpp deleted file mode 100644 index 78042bd1..00000000 --- a/source/objectinstance.cpp +++ /dev/null @@ -1,30 +0,0 @@ -/* $Id$ - -This file is part of libmspgl -Copyright © 2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - -#include "object.h" -#include "objectinstance.h" -#include "programdata.h" - -namespace Msp { -namespace GL { - -ObjectInstance::ObjectInstance(const Object &obj): - object(obj) -{ } - -void ObjectInstance::render() const -{ - object.render(this); -} - -void ObjectInstance::render(const std::string &pn) const -{ - object.render(pn, this); -} - -} // namespace GL -} // namespaec Msp