20#ifndef ORES_ASSETS_REPOSITORY_IMAGE_TAG_MAPPER_HPP
21#define ORES_ASSETS_REPOSITORY_IMAGE_TAG_MAPPER_HPP
24#include "ores.logging/make_logger.hpp"
25#include "ores.assets/domain/image_tag.hpp"
26#include "ores.assets/repository/image_tag_entity.hpp"
35 inline static std::string_view logger_name =
36 "ores.assets.repository.image_tag_mapper";
40 static auto instance = make_logger(logger_name);
48 static std::vector<domain::image_tag>
49 map(
const std::vector<image_tag_entity>& v);
50 static std::vector<image_tag_entity>
51 map(
const std::vector<domain::image_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 an association between an image and a tag.
Definition image_tag.hpp:34
Represents an image-tag association in the database.
Definition image_tag_entity.hpp:35
Maps domain model entities to data storage layer and vice-versa.
Definition image_tag_mapper.hpp:33