Files
amnezia-client/client/core/privileged_process.h
T

25 lines
509 B
C
Raw Normal View History

2021-11-19 19:02:39 +03:00
#ifndef PRIVILEGED_PROCESS_H
#define PRIVILEGED_PROCESS_H
#include <QObject>
2024-07-08 08:12:10 -07:00
// #include "rep_ipc_process_interface_replica.h"
2021-11-19 19:02:39 +03:00
// This class is dangerous - instance of this class casted from base class,
// so it support only functions
// Do not add any members into it
//
2024-07-08 08:12:10 -07:00
//class PrivilegedProcess : public IpcProcessInterfaceReplica
//{
// Q_OBJECT
//public:
// PrivilegedProcess();
// ~PrivilegedProcess() override;
2021-11-19 19:02:39 +03:00
2024-07-08 08:12:10 -07:00
// void waitForFinished(int msecs);
2021-11-19 19:02:39 +03:00
2024-07-08 08:12:10 -07:00
//};
2021-11-19 19:02:39 +03:00
2021-11-22 01:42:16 -08:00
#endif // PRIVILEGED_PROCESS_H
2021-11-19 19:02:39 +03:00