blob: 198b448724dc568f9e714971497aff52cdbf896d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include "core/pch.hh"
#include "core/config/string.hh"
config::String::String(std::string_view default_value)
{
m_value = default_value;
}
void config::String::set(std::string_view value)
{
m_value = value;
}
std::string_view config::String::get(void) const
{
return m_value;
}
|