mirror of
https://github.com/donnaskiez/ac.git
synced 2024-11-21 22:24:08 +01:00
21 lines
248 B
C
21 lines
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
|