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

Last change on this file since 10789 was 10304, checked in by tbretz, 13 years ago
Added namespace ReadlineColor to provide some colored output for default messages and commands.
File size: 447 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);
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.