1
0
mirror of synced 2026-02-05 07:04:38 +00:00

Some small fixes to the console code. Mostly about correctness...

This commit is contained in:
Andras Tantos
2021-08-22 09:31:42 -07:00
parent d6965185ee
commit 59e8935a90
2 changed files with 5 additions and 1 deletions

View File

@@ -69,6 +69,10 @@ Console_c::Console_c(const Configuration_c &aConfig, CLogger_c &aLogger, uint16_
mLogFileName = aConfig.get<std::string>("LogFile", "");
}
Console_c::~Console_c() {
Flush();
}
bool Console_c::HasInput() const { return mReceiveFull; }
char Console_c::GetChar() {