diff options
Diffstat (limited to 'src/ILog.hpp')
-rw-r--r-- | src/ILog.hpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/ILog.hpp b/src/ILog.hpp index 33b2644..d71059a 100644 --- a/src/ILog.hpp +++ b/src/ILog.hpp @@ -25,19 +25,19 @@ namespace patchage { class ILog { public: - ILog() = default; + ILog() = default; - ILog(const ILog&) = default; - ILog& operator=(const ILog&) = default; + ILog(const ILog&) = default; + ILog& operator=(const ILog&) = default; - ILog(ILog&&) = default; - ILog& operator=(ILog&&) = default; + ILog(ILog&&) = default; + ILog& operator=(ILog&&) = default; - virtual ~ILog() = default; + virtual ~ILog() = default; - virtual void info(const std::string& msg) = 0; - virtual void warning(const std::string& msg) = 0; - virtual void error(const std::string& msg) = 0; + virtual void info(const std::string& msg) = 0; + virtual void warning(const std::string& msg) = 0; + virtual void error(const std::string& msg) = 0; }; } // namespace patchage |