Moves debuglog stuff inside the debug_log namespace

This commit is contained in:
Felipe Zimmerle
2016-12-09 09:52:01 -03:00
parent a3787fedb8
commit 64e2927922
7 changed files with 20 additions and 9 deletions

View File

@@ -28,6 +28,8 @@ typedef struct DebugLog_t DebugLog;
#ifdef __cplusplus
namespace modsecurity {
namespace debug_log {
/** @ingroup ModSecurity_CPP_API */
class DebugLog {
@@ -51,6 +53,8 @@ class DebugLog {
std::string m_fileName;
};
} // namespace debug_log
} // namespace modsecurity
#endif

View File

@@ -45,6 +45,7 @@ namespace Parser {
class Driver;
}
using modsecurity::debug_log::DebugLog;
/** @ingroup ModSecurity_CPP_API */
class ConfigInt {