verbose output is now a thing

This commit is contained in:
Nicholas O'Connor
2017-03-24 20:01:25 -07:00
parent 4e67bd40c5
commit f4de6406bb
4 changed files with 55 additions and 5 deletions

View File

@@ -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

View File

@@ -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();
}