X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcore%2Fmeta.h;fp=source%2Fcore%2Fmeta.h;h=f12aede28a60029fd875377610d161d21ca63f61;hb=3553d02ef9cf66ae5ff16dd0b129815f144857a1;hp=0000000000000000000000000000000000000000;hpb=d61601ce7f87044c8ddd1e097d8d8743f06e84b4;p=libs%2Fcore.git diff --git a/source/core/meta.h b/source/core/meta.h new file mode 100644 index 0000000..f12aede --- /dev/null +++ b/source/core/meta.h @@ -0,0 +1,23 @@ +/* $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_ + +namespace Msp { + +template +struct RemoveConst +{ typedef T Type; }; + +template +struct RemoveConst +{ typedef T Type; }; + +} // namespace Msp + +#endif