introduction of new output functions to use instead of directly streaming to cout

This commit is contained in:
Nicholas O'Connor
2017-03-23 18:51:11 -07:00
parent 8b2cb4ceba
commit 5a7353abc1
8 changed files with 77 additions and 31 deletions

14
include/output.hpp Normal file
View File

@@ -0,0 +1,14 @@
#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);
}
}
#endif // __OUTPUT_HPP