mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-23 02:00:20 +07:00
18 lines
315 B
C++
18 lines
315 B
C++
|
|
#ifndef PROTOCOLPROPS_H
|
||
|
|
#define PROTOCOLPROPS_H
|
||
|
|
|
||
|
|
#include <QObject>
|
||
|
|
#include "core/utils/protocolEnum.h"
|
||
|
|
#include "core/protocols/protocolUtils.h"
|
||
|
|
|
||
|
|
class ProtocolProps : public QObject
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
explicit ProtocolProps(QObject *parent = nullptr) : QObject(parent) {}
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // PROTOCOLPROPS_H
|
||
|
|
|