我有一个继承自的模板类(从现在开始作为父类引用)。模板类初始化一个fusion列表成员变量,其中包含子类中指定的类和构造函数。templateusingList=boost::fusion::list;templateclassElementContainer{protected:constListchildren;public:ElementContainer(CHILDREN_TYPES&&...args):children(forward(args)...){}};子类示例:classXMLSignatureDocument:publicElementContainer{publ