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.
powersync-core/server/guhservice.h
2019-04-01 20:48:17 +02:00

21 lines
316 B
C++

#ifndef GUHSERVICE_H
#define GUHSERVICE_H
#include <QCoreApplication>
#include "qtservice/qtservice.h"
#include "guhcore.h"
class GuhService : public QtService<QCoreApplication>
{
public:
explicit GuhService(int argc, char **argv);
~GuhService();
protected:
void start();
};
#endif // GUHSERVICE_H