mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 03:18:07 +00:00
15 lines
No EOL
271 B
C++
15 lines
No EOL
271 B
C++
|
|
#include <QSharedPointer>
|
|
#include <QQmlApplicationEngine>
|
|
|
|
#include "model/core/CoreModel.hpp"
|
|
|
|
class App : public QObject{
|
|
public:
|
|
App(QObject * parent = nullptr);
|
|
|
|
void init();
|
|
|
|
QQmlApplicationEngine * mEngine = nullptr;
|
|
QSharedPointer<CoreModel> mCoreModel;
|
|
}; |