]> git.tdb.fi Git - libs/gl.git/blobdiff - source/predicate.h
Rearrange soucre files into subdirectories
[libs/gl.git] / source / predicate.h
diff --git a/source/predicate.h b/source/predicate.h
deleted file mode 100644 (file)
index 13c22e8..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef MSP_GL_PREDICATE_H_
-#define MSP_GL_PREDICATE_H_
-
-#include <msp/strings/lexicalcast.h>
-#include "gl.h"
-
-namespace Msp {
-namespace GL {
-
-enum Predicate
-{
-       NEVER    = GL_NEVER,
-       ALWAYS   = GL_ALWAYS,
-       LESS     = GL_LESS,
-       LEQUAL   = GL_LEQUAL,
-       EQUAL    = GL_EQUAL,
-       GREATER  = GL_GREATER,
-       GEQUAL   = GL_GEQUAL,
-       NOTEQUAL = GL_NOTEQUAL
-};
-
-void operator>>(const LexicalConverter &, Predicate &);
-void operator<<(LexicalConverter &, Predicate);
-
-} // namespace GL
-} // namespace Msp
-
-#endif