summaryrefslogtreecommitdiff
path: root/implementation/compat/logging/include/logger_impl.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'implementation/compat/logging/include/logger_impl.hpp')
-rw-r--r--implementation/compat/logging/include/logger_impl.hpp33
1 files changed, 0 insertions, 33 deletions
diff --git a/implementation/compat/logging/include/logger_impl.hpp b/implementation/compat/logging/include/logger_impl.hpp
deleted file mode 100644
index 8aed18e..0000000
--- a/implementation/compat/logging/include/logger_impl.hpp
+++ /dev/null
@@ -1,33 +0,0 @@
-// Copyright (C) 2019 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
-// This Source Code Form is subject to the terms of the Mozilla Public
-// License, v. 2.0. If a copy of the MPL was not distributed with this
-// file, You can obtain one at http://mozilla.org/MPL/2.0/.
-
-#ifndef VSOMEIP_COMPAT_LOGGER_IMPL_HPP_
-#define VSOMEIP_COMPAT_LOGGER_IMPL_HPP_
-
-#include "logger.hpp"
-
-namespace vsomeip_v3 {
-class logger;
-} // namespace vsomeip_v3
-
-namespace vsomeip {
-
-class logger_impl
- : public logger {
-public:
- static std::shared_ptr<logger> get();
-
- logger_impl();
-
- boost::log::sources::severity_logger_mt<
- boost::log::trivial::severity_level> & get_internal();
-
-private:
- std::shared_ptr<vsomeip_v3::logger> impl_;
-};
-
-} // namespace vsomeip
-
-#endif // VSOMEIP_COMPAT_LOGGER_IMPL_HPP_