X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fcore%2Fpredicate.h;h=38053d03f53a40541b3c9570d2b4297318ef10ba;hp=079ef63e3daa0fb493d965ed389b74f37ebf254a;hb=HEAD;hpb=24b24e2203c776aacd9744bb947f5cf47b03d328 diff --git a/source/core/predicate.h b/source/core/predicate.h index 079ef63e..38053d03 100644 --- a/source/core/predicate.h +++ b/source/core/predicate.h @@ -6,7 +6,7 @@ namespace Msp { namespace GL { -enum Predicate +enum Predicate: std::uint8_t { NEVER, ALWAYS, @@ -18,12 +18,12 @@ enum Predicate NOTEQUAL }; -unsigned get_gl_predicate(Predicate); - void operator>>(const LexicalConverter &, Predicate &); void operator<<(LexicalConverter &, Predicate); } // namespace GL } // namespace Msp +#include "predicate_backend.h" + #endif