X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Ftag.h;fp=source%2Ftag.h;h=87d4af656d9a8cea87969f7c966ac6d74d7fb26e;hb=c6aea1bc1586ffef132e6fffdf99343cb56617db;hp=0000000000000000000000000000000000000000;hpb=4324df6e3d807d35e02e828320e436c509275520;p=libs%2Fgl.git diff --git a/source/tag.h b/source/tag.h new file mode 100644 index 00000000..87d4af65 --- /dev/null +++ b/source/tag.h @@ -0,0 +1,21 @@ +#ifndef MSP_GL_TAG_H_ +#define MSP_GL_TAG_H_ + +#include + +namespace Msp { +namespace GL { + +struct Tag +{ + unsigned id; + + Tag(): id(0) { } + Tag(const char *); + Tag(const std::string &s); +}; + +} // namespace GL +} // namespace Msp + +#endif