This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2020-09-21 19:29:02 +02:00

24 lines
394 B
C++

#ifndef NYMEAAPPSERVICE_H
#define NYMEAAPPSERVICE_H
#include <QAndroidService>
#include "engine.h"
class NymeaAppService : public QAndroidService
{
Q_OBJECT
public:
explicit NymeaAppService(int argc, char** argv);
private:
void sendNotification(const QString &notification, const QVariantMap &params);
private:
Engine *m_engine = nullptr;
};
#endif // NYMEAAPPSERVICE_H