ConsoleEditor.h 205 B

123456789101112
  1. #ifndef COMMANDEDITOR_H
  2. #define COMMANDEDITOR_H
  3. #include "common/utils/String.h"
  4. namespace ConsoleEditor {
  5. void clearPrintLine();
  6. void printLine();
  7. bool readCommand(String& buffer);
  8. }
  9. #endif