我有一个模板类,它是一个模板,作为MFC CWnd
对象的包装器。
在主类我希望有一个面板控件的集合,但我不知道如何创建它们的数组,因为它们显然是从不同的基类派生的(即CButtonCtrl, CListBox等)。
template<typename W>
class Component : public W
{
public:
Component(uint_t nId = -1, CWnd *pParent = NULL, const char *pName = NULL)
: mParent(pParent)
, mName(pName)
, mId(nId)
{
//std::cout << ((mName != NULL) ? mName : "NULL") << ": " << (void *)this << ": Id:" << mId << " Parent:" << (void *)mParent << std::endl;
}
const char *getName(void) const { return mName; }
void setId(uint_t nId) { mId = nId; }
uint_t getId(void) const { return mId; }
void setParent(CWnd *pParent) { mParent = pParent; }
CWnd *getParent() const { return mParent; }
private:
uint_t mId;
CWnd *mParent;
const char *mName;
};
主要班级:
class Panel : public Component<CDialog>
{
public:
Panel(uint_t nId = -1, CWnd *pParent = NULL, const char *pComponentName = NULL);
virtual ~Panel(void) {};
virtual void CreateWnd(CWnd *pParent = NULL);
template <typename W>
void addComponent(Component<W> *pComponent)
{
}
template <typename W>
void removeComponent(Component<W> *pComponent)
{
}
void Show(bool bShow = true) override;
protected:
typedef std::vector<Component<?> *> Components;
private:
Components mComponents;
};
在Java中,有一个未知泛型的语法,如Component<?>
,所以我可以在数组中存储一组公共对象,但我不知道如何在C ++中执行此操作。我知道我必须使用指针因为滑动,但这不是问题。
使用Visual Studio 2010。
答案 0 :(得分:0)
您可以尝试boost::any
或std::any