summaryrefslogtreecommitdiff
path: root/implementation/compat/logging/include/logger.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'implementation/compat/logging/include/logger.hpp')
-rw-r--r--implementation/compat/logging/include/logger.hpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/implementation/compat/logging/include/logger.hpp b/implementation/compat/logging/include/logger.hpp
deleted file mode 100644
index 0f59502..0000000
--- a/implementation/compat/logging/include/logger.hpp
+++ /dev/null
@@ -1,28 +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_HPP_
-#define VSOMEIP_COMPAT_LOGGER_HPP_
-
-#include <memory>
-
-#include <boost/log/sources/severity_logger.hpp>
-#include <boost/log/trivial.hpp>
-
-namespace vsomeip {
-
-class logger {
-public:
- static std::shared_ptr<logger> get();
-
- virtual ~logger() {}
-
- virtual boost::log::sources::severity_logger_mt<
- boost::log::trivial::severity_level> & get_internal() = 0;
-};
-
-} // namespace vsomeip
-
-#endif // VSOMEIP_COMPAT_LOGGER_HPP_