2017-03-23 18:51:11 -07:00
|
|
|
#ifndef __OUTPUT_HPP
|
|
|
|
#define __OUTPUT_HPP
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace cellar {
|
|
|
|
namespace output {
|
2017-03-24 20:01:25 -07:00
|
|
|
extern void statement(std::string);
|
|
|
|
extern void warning(std::string);
|
2017-03-23 18:51:11 -07:00
|
|
|
extern void error(std::string);
|
2017-03-24 19:30:58 -07:00
|
|
|
|
2017-03-24 20:01:25 -07:00
|
|
|
extern void statement(std::string parm, bool);
|
|
|
|
extern void warning(std::string, bool);
|
|
|
|
extern void error(std::string, bool);
|
|
|
|
|
2017-03-24 19:30:58 -07:00
|
|
|
extern bool colors;
|
|
|
|
extern void detect_colors();
|
2017-03-23 18:51:11 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __OUTPUT_HPP
|