summaryrefslogtreecommitdiffstats
path: root/core/config/string.cc
blob: 8fb9d706649f985d6b4b17aaacd7e0a87da04cc5 (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;
}