20#ifndef ORES_ASSETS_REPOSITORY_TAG_MAPPER_HPP
21#define ORES_ASSETS_REPOSITORY_TAG_MAPPER_HPP
24#include "ores.logging/make_logger.hpp"
25#include "ores.assets/domain/tag.hpp"
26#include "ores.assets/repository/tag_entity.hpp"
35 inline static std::string_view logger_name =
36 "ores.assets.repository.tag_mapper";
40 static auto instance = make_logger(logger_name);
48 static std::vector<domain::tag>
49 map(
const std::vector<tag_entity>& v);
50 static std::vector<tag_entity>
51 map(
const std::vector<domain::tag>& v);
Database persistence layer for asset domain types.
Definition image_entity.hpp:28
Implements logging infrastructure for ORE Studio.
Definition boost_severity.hpp:28
Represents a category tag for images.
Definition tag.hpp:32
Represents a tag in the database.
Definition tag_entity.hpp:33
Maps domain model entities to data storage layer and vice-versa.
Definition tag_mapper.hpp:33