12345678910111213141516171819 |
- #ifndef CLIMANAGER_H
- #define CLIMANAGER_H
- #include "config.h"
- #include "qmlhandler.h"
- #include <QGuiApplication>
- namespace CliManager {
- void setQmlHandler(QMLHandler *q);
- void init();
- void writeToCli(QString s);
- void readPipeLoop();
- void notificationsLoop();
- void onExit();
- void setProgramActive(bool active);
- } // namespace CliManager
- #endif // CLIMANAGER_H
|