move more qt-tools stuff
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
#ifndef QMLWRAPPER_H
|
||||
#define QMLWRAPPER_H
|
||||
#include <QtCore>
|
||||
#include <boost/shared_ptr.hpp>
|
||||
|
||||
class ConfigFile;
|
||||
class QQmlApplicationEngine;
|
||||
|
||||
class QmlWrapper: public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
QmlWrapper(boost::shared_ptr<ConfigFile>);
|
||||
~QmlWrapper();
|
||||
QmlWrapper(const QmlWrapper&);
|
||||
|
||||
public slots:
|
||||
|
||||
private:
|
||||
boost::shared_ptr<QQmlApplicationEngine> myEngine;
|
||||
boost::shared_ptr<ConfigFile> myConfig;
|
||||
};
|
||||
|
||||
#endif // QMLWRAPPER_H
|
||||
Reference in New Issue
Block a user