23 lines
293 B
C++
23 lines
293 B
C++
#ifndef PROXYCONFIGURATION_H
|
|
#define PROXYCONFIGURATION_H
|
|
|
|
#include <QObject>
|
|
|
|
namespace remoteproxy {
|
|
|
|
class ProxyConfiguration : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit ProxyConfiguration(QObject *parent = nullptr);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif // PROXYCONFIGURATION_H
|