class 模板的参数列表丢失,但 Visual C++ 没有

Argument list for class template is missing, but not with VisualC++

使用 IAR 编译器时,出现以下错误: Argument list for class template "CallbackInterface" is missing 但是使用 VisualC++,它的编译就像一个魅力。

有什么可以解释的吗?

这是我的回调接口

template<typename DataModel, typename... ArgumentType>
class CallbackInterface : public DataModel
{
public:
    CallbackInterface() {};
    ~CallbackInterface() {};
    CallbackInterface(ArgumentType... arg) : DataModel(arg...) {};

protected:
    ///Callback methods
    static bool AlwaysDisplayable(DataModel* baseInstance) { return true; };
};

这是我对这个接口的专业化:

template<typename DataModel, typename... ArgumentType>
class ThisCallbackInterface : public CallbackInterface<DataModel, ArgumentType...>
{
public:
    ThisCallbackInterface() {};
    ~ThisCallbackInterface() {};
    ThisCallbackInterface(ArgumentType... arg) : CallbackInterface(arg...) {};

还有我的决赛childclass:

using DataType = Something;

struct DataModel 
{
  DataModel(){};
  DataModel(DataType dataArgs){};
};

class Child: public CallbackStore<DataModel>, public ThisCallbackInterface<DataModel,DataType>
{
public:
    Child(DataType dataArgs) : 
        CallbackStore(this),
        ThisCallbackInterface(dataArgs){};
    Child():
        CallbackStore(nullptr),
        ThisCallbackInterface(){};
    ~Child(){};
};

也许可以解释 CallbackInterface 的模板参数?

  ThisCallbackInterface(ArgumentType... arg)
     : CallbackInterface<DataModel, ArgumentType...>(arg...)
   { } // ..............^^^^^^^^^^^^^^^^^^^^^^^^^^^^