Files
amnezia-client/client/core/utils/containerEnum.h
T

39 lines
654 B
C++
Raw Normal View History

#ifndef CONTAINERENUM_H
#define CONTAINERENUM_H
#include <QMetaEnum>
#include <QObject>
namespace amnezia
{
namespace ContainerEnumNS
{
Q_NAMESPACE
enum DockerContainer {
None = 0,
Awg,
Awg2,
WireGuard,
OpenVpn,
Ipsec,
Xray,
SSXray,
// non-vpn
TorWebSite,
Dns,
Sftp,
2026-05-04 19:16:48 +03:00
Socks5Proxy,
MtProxy,
2026-05-04 22:58:26 +03:00
Telemt,
};
Q_ENUM_NS(DockerContainer)
} // namespace ContainerEnumNS
using namespace ContainerEnumNS;
}
#endif // CONTAINERENUM_H