13 lines
237 B
C++
13 lines
237 B
C++
#include <webserv/config/directive/StringDirective.hpp> // for IntDirective
|
|
|
|
#include <any>
|
|
|
|
void StringDirective::parse(const std::string &value)
|
|
{
|
|
value_ = value;
|
|
}
|
|
|
|
std::any StringDirective::getValue() const
|
|
{
|
|
return value_;
|
|
} |