]> git.tdb.fi Git - libs/gl.git/blobdiff - source/meshbuilder.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / meshbuilder.h
diff --git a/source/meshbuilder.h b/source/meshbuilder.h
deleted file mode 100644 (file)
index c8354b9..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2007  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
-#ifndef MSP_GL_MESHBUILDER_H_
-#define MSP_GL_MESHBUILDER_H_
-
-#include "primitivebuilder.h"
-
-namespace Msp {
-namespace GL {
-
-class Batch;
-class Mesh;
-
-class MeshBuilder: public PrimitiveBuilder
-{
-private:
-       Mesh  &mesh;
-       Batch *batch;
-
-public:
-       MeshBuilder(Mesh &);
-private:
-       virtual void begin_();
-       virtual void end_();
-       virtual void element_(unsigned);
-};
-
-} // namespace GL
-} // namespace Msp
-
-#endif