mirror-ac/user/client.h
2023-08-18 15:33:13 +10:00

21 lines
No EOL
248 B
C++

#ifndef CLIENT_H
#define CLIENT_H
#include <Windows.h>
#include "report.h"
namespace global
{
class Client
{
HANDLE pipe_handle;
LPTSTR pipe_name;
public:
Client(LPTSTR PipeName);
void WriteToPipe( TestReport* Report );
};
}
#endif