readline_buffer: add a couple const

release-v0.4.0.1
moneromooo-monero 7 years ago
parent ae8841f2ab
commit 5f8f290505
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -13,11 +13,11 @@ namespace rdln
void start();
void stop();
int process();
bool is_running()
bool is_running() const
{
return m_cout_buf != NULL;
}
void get_line(std::string& line);
void get_line(std::string& line) const;
void set_prompt(const std::string& prompt);
protected:

@ -62,7 +62,7 @@ void rdln::readline_buffer::stop()
remove_line_handler();
}
void rdln::readline_buffer::get_line(std::string& line)
void rdln::readline_buffer::get_line(std::string& line) const
{
std::unique_lock<std::mutex> lock(line_mutex);
have_line.wait(lock);

Loading…
Cancel
Save