aboutsummaryrefslogtreecommitdiff
path: root/source-codegen-base/MetadataBase.hpp
blob: 59c61da5a4563b0d39f43ad66624da9644b3df37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include <optional>
#include <string_view>

namespace Metadata {

template <class TEnum>
std::string_view EnumToString(TEnum value) = delete;

template <class TEnum>
std::optional<TEnum> EnumFromString(std::string_view str) = delete;

} // namespace Metadata