Q3DWidgetFactory.h 227 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#ifndef Q3DWIDGETFACTORY_H
#define Q3DWIDGETFACTORY_H

#include <QPointer>

#include "Q3DWidget.h"

class Q3DWidgetFactory
{
public:
    static QPointer<Q3DWidget> get(const std::string& type);
};

#endif // Q3DWIDGETFACTORY_H