テンプレート化された構造体があります:
template <typename T, typename T2>
struct MyStruct {};
ある型が「MyStruct」であるかどうかを判断したい (テンプレートのパラメーターが何であるかは気にしない)。
template <typename OtherType, typename TestingType, typename = std::enable_if< IsMyStruct<TestingType>::value, TestingType>::type >
struct OtherStruct {};
書き方IsMyStruct