#ifndef TEST_INTEROP_CXX_TEMPLATES_INPUTS_CLASS_TEMPLATE_TEMPLATE_PARAMETER_H #define TEST_INTEROP_CXX_TEMPLATES_INPUTS_CLASS_TEMPLATE_TEMPLATE_PARAMETER_H struct IntWrapper { int value; int getValue() const { return value; } }; template struct MagicWrapper { T t; int getValuePlusArg(int arg) const { return t.getValue() + arg; } }; template