42 lines
968 B
C++
42 lines
968 B
C++
// Copyright (C) 2022 Jérôme "Lynix" Leclercq (lynix680@gmail.com)
|
|
// This file is part of the "Nazara Engine - Core module"
|
|
// For conditions of distribution and use, see copyright notice in Config.hpp
|
|
|
|
#pragma once
|
|
|
|
#ifndef NAZARA_CORE_OBJECTLIBRARY_HPP
|
|
#define NAZARA_CORE_OBJECTLIBRARY_HPP
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
#include <unordered_map>
|
|
|
|
namespace Nz
|
|
{
|
|
template<typename Type>
|
|
class ObjectLibrary
|
|
{
|
|
friend Type;
|
|
|
|
public:
|
|
ObjectLibrary() = default;
|
|
~ObjectLibrary() = default;
|
|
|
|
void Clear();
|
|
|
|
std::shared_ptr<Type> Get(const std::string& name);
|
|
bool Has(const std::string& name);
|
|
|
|
void Register(const std::string& name, std::shared_ptr<Type> object);
|
|
std::shared_ptr<Type> Query(const std::string& name);
|
|
void Unregister(const std::string& name);
|
|
|
|
private:
|
|
std::unordered_map<std::string, std::shared_ptr<Type>> m_library;
|
|
};
|
|
}
|
|
|
|
#include <Nazara/Core/ObjectLibrary.inl>
|
|
|
|
#endif // NAZARA_CORE_OBJECTLIBRARY_HPP
|