verbose output is now a thing
This commit is contained in:
@@ -9,6 +9,8 @@ using namespace std;
|
||||
namespace cellar {
|
||||
extern void print_header();
|
||||
extern void print_version(int,vector<string>);
|
||||
|
||||
extern bool verbose;
|
||||
}
|
||||
|
||||
#endif // __CELLAR_HPP
|
||||
|
@@ -5,10 +5,14 @@
|
||||
|
||||
namespace cellar {
|
||||
namespace output {
|
||||
extern void statement(std::string parm);
|
||||
extern void warning(std::string parm);
|
||||
extern void statement(std::string);
|
||||
extern void warning(std::string);
|
||||
extern void error(std::string);
|
||||
|
||||
extern void statement(std::string parm, bool);
|
||||
extern void warning(std::string, bool);
|
||||
extern void error(std::string, bool);
|
||||
|
||||
extern bool colors;
|
||||
extern void detect_colors();
|
||||
}
|
||||
|
Reference in New Issue
Block a user