X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/1487578f4887f49661320e24e311074a9af36f80..a91e9542b384905187890f161d4da5396996fcfd:/projects/sgconf/utils.h diff --git a/projects/sgconf/utils.h b/projects/sgconf/utils.h index 3793c9cd..3a57d999 100644 --- a/projects/sgconf/utils.h +++ b/projects/sgconf/utils.h @@ -1,48 +1,45 @@ -#ifndef __STG_SGCONF_UTILS_H__ -#define __STG_SGCONF_UTILS_H__ +#pragma once #include "stg/common.h" -#include "stg/resetable.h" #include #include +#include namespace SGCONF { template inline -void MaybeSet(const std::map & options, const std::string & name, RESETABLE & res) +void MaybeSet(const std::map & options, const std::string & name, std::optional & res) { -std::map::const_iterator it(options.find(name)); -if (it == options.end()) - return; -T value; -if (str2x(it->second, value) < 0) - return; -res = value; + std::map::const_iterator it(options.find(name)); + if (it == options.end()) + return; + T value; + if (str2x(it->second, value) < 0) + return; + res = value; } template inline void MaybeSet(const std::map & options, const std::string & name, T & res, F conv) { -std::map::const_iterator it(options.find(name)); -if (it == options.end()) - return; -conv(it->second, res); + std::map::const_iterator it(options.find(name)); + if (it == options.end()) + return; + conv(it->second, res); } template <> inline -void MaybeSet(const std::map & options, const std::string & name, RESETABLE & res) +void MaybeSet(const std::map & options, const std::string & name, std::optional & res) { -std::map::const_iterator it(options.find(name)); -if (it == options.end()) - return; -res = it->second; + std::map::const_iterator it(options.find(name)); + if (it == options.end()) + return; + res = it->second; } } // namespace SGCONF - -#endif