diff options
Diffstat (limited to 'src/ILog.hpp')
-rw-r--r-- | src/ILog.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ILog.hpp b/src/ILog.hpp index e1ee8b4..33b2644 100644 --- a/src/ILog.hpp +++ b/src/ILog.hpp @@ -19,6 +19,8 @@ #include <string> +namespace patchage { + /// Interface for writing log messages class ILog { @@ -38,4 +40,6 @@ public: virtual void error(const std::string& msg) = 0; }; +} // namespace patchage + #endif // PATCHAGE_ILOG_HPP |