]> git.tdb.fi Git - libs/gl.git/blob - source/tag.h
Add $Id$ to tag.*
[libs/gl.git] / source / tag.h
1 /* $Id$
2
3 This file is part of libmspgl
4 Copyright © 2007  Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef MSP_GL_TAG_H_
9 #define MSP_GL_TAG_H_
10
11 #include <string>
12
13 namespace Msp {
14 namespace GL {
15
16 struct Tag
17 {
18         unsigned id;
19
20         Tag(): id(0) { }
21         Tag(const char *);
22         Tag(const std::string &s);
23 };
24
25 } // namespace GL
26 } // namespace Msp
27
28 #endif