aboutsummaryrefslogtreecommitdiff
path: root/src/DI/object_wrapper.hpp
blob: 6433bc258b1eadc8e677de5a3b9111acd92fe6f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once

#include "DI/container.hpp"
#include "DI/interfaces/wrapper.hpp"

#include <memory>

template <class Interface, class ObjectImpl>
class ObjectWrapper : public IWrapper<std::unique_ptr<Interface>>
{
public:
	explicit ObjectWrapper(const Container &container) noexcept : _container(container) {}

	[[nodiscard]] auto get() const noexcept -> std::unique_ptr<Interface> override;

private:
	const Container &_container;
};

#include "object_wrapper.tpp"