WIP: main

This commit is contained in:
driftingsun 2020-12-26 15:03:51 +03:00
parent f25f34565a
commit 15730b470e
52 changed files with 2438 additions and 208 deletions

View file

@ -0,0 +1,24 @@
#ifndef SYSTEMSERVICE_H
#define SYSTEMSERVICE_H
#include <QCoreApplication>
#include "qtservice.h"
class LocalServer;
class SystemService : public QtService<QCoreApplication>
{
public:
SystemService(int argc, char** argv);
protected:
void start() override;
void stop() override;
private:
LocalServer* m_localServer;
};
#endif // SYSTEMSERVICE_H