X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fvertexarraybuilder.h;h=3b1f821645e21b9c235680e677e10be017e6f73b;hb=3663bed18358a2399b2a8a8f7779d85e0ed81bd0;hp=54357677d9fe671d99b63d6b68c9b2df1210c78f;hpb=85facfb688035b5bbc9a3a87d080582fbf34930b;p=libs%2Fgl.git diff --git a/source/vertexarraybuilder.h b/source/vertexarraybuilder.h index 54357677..3b1f8216 100644 --- a/source/vertexarraybuilder.h +++ b/source/vertexarraybuilder.h @@ -1,7 +1,7 @@ /* $Id$ This file is part of libmspgl -Copyright © 2007 Mikko Rasa, Mikkosoft Productions +Copyright © 2007-2008, 2010 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ @@ -19,16 +19,15 @@ class VertexArray; class VertexArrayBuilder: public VertexBuilder { -public: - std::vector &data; - - VertexArrayBuilder(VertexArray &, std::vector &); - ~VertexArrayBuilder(); - private: VertexArray &array; VertexArrayBuilder(const VertexArrayBuilder &); +public: + VertexArrayBuilder(VertexArray &); + ~VertexArrayBuilder(); + +private: virtual void vertex_(float, float, float, float); };