]> 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 d34da63..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-#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 &);
-       void auto_offset();
-private:
-       virtual void begin_();
-       virtual void end_();
-       virtual void element_(unsigned);
-};
-
-} // namespace GL
-} // namespace Msp
-
-#endif