#define MSP_DATAFILE_TYPE_H_
#include <msp/core/inttypes.h>
+#include <msp/core/meta.h>
#include <msp/strings/lexicalcast.h>
namespace Msp {
0
};
-template<typename T>
-struct HasLoadType
+struct CheckLoadType: Sfinae
{
- struct Yes { char c[2]; };
- struct No { char c; };
-
- template<typename U>
- static Yes f(typename U::LoadType *);
- template<typename U>
- static No f(...);
-
- enum { value = (sizeof(f<T>(0))==sizeof(Yes)) };
+ template<typename T>
+ static Yes f(typename T::LoadType *);
+ using Sfinae::f;
};
+template<typename T>
+struct HasLoadType: Sfinae::Evaluate<CheckLoadType, T> { };
+
template<typename T, bool lt = HasLoadType<T>::value>
struct TypeInfo;