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.
2018-08-14 17:26:57 +02:00

19 lines
230 B
C++

#ifndef PROXYCLIENT_H
#define PROXYCLIENT_H
#include <QObject>
class ProxyClient : public QObject
{
Q_OBJECT
public:
explicit ProxyClient(QObject *parent = nullptr);
signals:
public slots:
};
#endif // PROXYCLIENT_H