1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-20 10:07:45 +03:00
mal/cpp/ReadLine.h
Stephen Thirlwall 9ddaa0b91b c++11: step 0
2015-03-27 20:44:42 +11:00

18 lines
279 B
C++

#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