MCPcopy Create free account
hub / github.com/daniele77/cli / InputSource

Method InputSource

include/cli/detail/linuxkeyboard.h:55–63  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

53public:
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 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected