mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-28 18:54:33 +00:00
27 lines
477 B
C
27 lines
477 B
C
|
#ifndef QMLCREATOR_H
|
||
|
#define QMLCREATOR_H
|
||
|
|
||
|
#include <QMap>
|
||
|
#include <QStringList>
|
||
|
|
||
|
|
||
|
|
||
|
class QmlCreator
|
||
|
{
|
||
|
private:
|
||
|
QString path;
|
||
|
QStringList copyedQml;
|
||
|
|
||
|
QMap<QString, QStringList> qmlImports;
|
||
|
void createQml(const QString& resLib, const QStringList& imports);
|
||
|
|
||
|
void initQml();
|
||
|
public:
|
||
|
QmlCreator(const QString &path);
|
||
|
~QmlCreator();
|
||
|
QMap<QString, QStringList> getQmlImports() const;
|
||
|
QStringList getCopyedQml() const;
|
||
|
};
|
||
|
|
||
|
#endif // QMLCREATOR_H
|