| 57 | ); |
| 58 | } |
| 59 | void Start() |
| 60 | { |
| 61 | Enter(); |
| 62 | |
| 63 | while(!exit) |
| 64 | { |
| 65 | Prompt(); |
| 66 | std::string line; |
| 67 | if (!in.good()) |
| 68 | Exit(); |
| 69 | std::getline(in, line); |
| 70 | if (in.eof()) |
| 71 | Exit(); |
| 72 | else |
| 73 | Feed(line); |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | private: |
| 78 | bool exit; |
nothing calls this directly
no outgoing calls
no test coverage detected