X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fvertexarraybuilder.h;h=3b1f821645e21b9c235680e677e10be017e6f73b;hb=2663d392c1c60e0ca511bb836010124024da3276;hp=0b8eef860c2b36952a2fc73d058e81de19d6701b;hpb=e92458a4a0e6191bff549a8b316dbbbd7c56e90f;p=libs%2Fgl.git diff --git a/source/vertexarraybuilder.h b/source/vertexarraybuilder.h index 0b8eef86..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; +private: + VertexArray &array; + VertexArrayBuilder(const VertexArrayBuilder &); +public: VertexArrayBuilder(VertexArray &); ~VertexArrayBuilder(); private: - VertexArray &array; - - VertexArrayBuilder(const VertexArrayBuilder &); virtual void vertex_(float, float, float, float); };