]> git.tdb.fi Git - libs/gl.git/blobdiff - source/tag.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / tag.h
diff --git a/source/tag.h b/source/tag.h
deleted file mode 100644 (file)
index b2d4fd5..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2007  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
-#ifndef MSP_GL_TAG_H_
-#define MSP_GL_TAG_H_
-
-#include <string>
-
-namespace Msp {
-namespace GL {
-
-struct Tag
-{
-       unsigned id;
-
-       Tag(): id(0) { }
-       Tag(const char *);
-       Tag(const std::string &s);
-};
-
-} // namespace GL
-} // namespace Msp
-
-#endif