0.4.2 release

This commit is contained in:
Evgeniy Dushistov
2007-08-14 18:18:20 +00:00
commit 3f241bb6bb
118 changed files with 29884 additions and 0 deletions

16
src/readline.hpp Normal file
View File

@@ -0,0 +1,16 @@
#ifndef _READLINE_HPP_
#define _READLINE_HPP_
#include <string>
using std::string;
class read_line {
public:
virtual ~read_line() {}
virtual bool read(const string &banner, string& line)=0;
virtual void add_to_history(const std::string& phrase) {}
};
extern read_line *create_readline_object();
#endif//!_READLINE_HPP_