MCPcopy Create free account
hub / github.com/HO-COOH/FastCopy / AnonymousPipe

Class AnonymousPipe

FastCopy/FastCopyCommandParser.h:5–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3#include <Windows.h>
4
5class AnonymousPipe
6{
7 HANDLE m_readPipe{};
8 HANDLE m_writePipe{};
9
10public:
11 AnonymousPipe();
12
13 auto getReadHandle() const
14 {
15 return m_readPipe;
16 }
17
18 auto getWriteHandle() const
19 {
20 return m_writePipe;
21 }
22};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected