source: trunk/FACT++/src/ReadlineColor.h@ 11287

Last change on this file since 11287 was 10998, checked in by tbretz, 13 years ago
Added compile time to boot message, added interactive flag.
File size: 470 bytes
Line 
1#ifndef FACT_ReadlineColor
2#define FACT_ReadlineColor
3
4#include <ostream>
5
6namespace ReadlineColor
7{
8 bool PrintBootMsg(std::ostream &out, const std::string &name, bool interactive=true);
9 bool PrintAttributes(std::ostream &out);
10
11 bool PrintGeneralHelp(std::ostream &out, const std::string &name);
12 bool PrintCommands(std::ostream &out);
13 bool PrintKeyBindings(std::ostream &out);
14
15 bool Process(std::ostream &out, const std::string &str);
16};
17
18#endif
Note: See TracBrowser for help on using the repository browser.