| 3 | #include <Windows.h> |
| 4 | |
| 5 | class AnonymousPipe |
| 6 | { |
| 7 | HANDLE m_readPipe{}; |
| 8 | HANDLE m_writePipe{}; |
| 9 | |
| 10 | public: |
| 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 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected