cellar/include/output.hpp

24 lines
541 B
C++
Raw Normal View History

#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);
extern void error(std::string);
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);
extern void blank_line(bool verbose = false);
2017-03-24 20:01:25 -07:00
extern bool colors;
extern void detect_colors();
}
}
#endif // __OUTPUT_HPP