cellar/include/output.hpp

15 lines
272 B
C++
Raw Normal View History

#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