| 53 | public: |
| 54 | |
| 55 | InputSource() |
| 56 | { |
| 57 | int pipes[2]; |
| 58 | if (pipe(pipes) == 0) |
| 59 | { |
| 60 | shutdownPipe = pipes[1]; // we store the write end |
| 61 | readPipe = pipes[0]; // ... and the read end |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | void WaitKbHit() |
| 66 | { |
nothing calls this directly
no outgoing calls
no test coverage detected