linux.x86.linphone/Linphone/core/App.hpp
Julien Wadel 23c0b9bd42 Add an example of Cpp model for views.
Remove qml folder.
Update SDK
2023-10-03 15:44:20 +02:00

16 lines
No EOL
298 B
C++

#include <QSharedPointer>
#include <QQmlApplicationEngine>
#include "model/core/CoreModel.hpp"
class App : public QObject{
public:
App(QObject * parent = nullptr);
void init();
void initCppInterfaces();
QQmlApplicationEngine * mEngine = nullptr;
QSharedPointer<CoreModel> mCoreModel;
};