mirror of
https://github.com/outbackdingo/amnezia-client.git
synced 2026-01-27 10:18:14 +00:00
12 lines
217 B
Plaintext
12 lines
217 B
Plaintext
#include <QtCore>
|
|
#include <QString>
|
|
|
|
class IpcProcessTun2Socks
|
|
{
|
|
SLOT( start() );
|
|
SLOT( stop() );
|
|
|
|
SIGNAL( setConnectionState(int state) );
|
|
SIGNAL( stateChanged(QProcess::ProcessState newState) );
|
|
};
|