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

Method Start

include/cli/clifilesession.h:59–75  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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
77private:
78 bool exit;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected