18 lines
338 B
C++
18 lines
338 B
C++
#ifndef __OUTPUT_HPP
|
|
#define __OUTPUT_HPP
|
|
|
|
#include <string>
|
|
|
|
namespace cellar {
|
|
namespace output {
|
|
extern void statement(std::string parm);
|
|
extern void warning(std::string parm);
|
|
extern void error(std::string);
|
|
|
|
extern bool colors;
|
|
extern void detect_colors();
|
|
}
|
|
}
|
|
|
|
#endif // __OUTPUT_HPP
|