#ifndef __PLASP__UTILS__LOGGER_H #define __PLASP__UTILS__LOGGER_H #include #include namespace plasp { namespace utils { //////////////////////////////////////////////////////////////////////////////////////////////////// // // Logger // //////////////////////////////////////////////////////////////////////////////////////////////////// class Logger { public: Logger(); void setPedantic(bool isPedantic = true); void parserWarning(const Parser &parser, const std::string &message); private: bool m_isPedantic; }; //////////////////////////////////////////////////////////////////////////////////////////////////// } } #endif