SIGN IN SIGN UP
2015-03-26 22:08:35 +11:00
#ifndef INCLUDE_READLINE_H
#define INCLUDE_READLINE_H
#include "String.h"
class ReadLine {
public:
ReadLine(const String& historyFile);
~ReadLine();
bool get(const String& prompt, String& line);
private:
String m_historyPath;
};
#endif // INCLUDE_READLINE_H