X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Fcore%2Fmeta.h;h=a13f5cb3a5714de60aba9a7bdc5682370aac110a;hp=f6dff160ff9be99df60b2522d28bdd368d2a7d95;hb=c3e242c2629cbc9645258b30aaf07b7285d4372b;hpb=b56eb5ec1da675da0c66abc53c1e4f6c4e4cccbd diff --git a/source/core/meta.h b/source/core/meta.h index f6dff16..a13f5cb 100644 --- a/source/core/meta.h +++ b/source/core/meta.h @@ -1,13 +1,8 @@ -/* $Id$ - -This file is part of libmspcore -Copyright © 2008 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #ifndef MSP_CORE_META_H_ #define MSP_CORE_META_H_ +#include + namespace Msp { template @@ -18,6 +13,7 @@ template struct RemoveConst { typedef T Type; }; + template struct RemoveReference { typedef T Type; }; @@ -26,6 +22,34 @@ template struct RemoveReference { typedef T Type; }; + +template +struct EnableIf; + +template +struct EnableIf +{ typedef R Yes; }; + +template +struct EnableIf +{ typedef R No; }; + + +/** +Common fragments used in SFINAE-based decider constructs. +*/ +struct Sfinae +{ + struct Yes { char c[2]; }; + struct No { char c; }; + + template + struct Evaluate + { + enum { value = (s==sizeof(Yes)) }; + }; +}; + } // namespace Msp #endif