X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/8c6fa3fbaccc22127280bf77a48fab5a3ee0716e..46b0747592074017ff0ea4b33d4a7194235886e5:/projects/sgconf/utils.h diff --git a/projects/sgconf/utils.h b/projects/sgconf/utils.h deleted file mode 100644 index 3793c9cd..00000000 --- a/projects/sgconf/utils.h +++ /dev/null @@ -1,48 +0,0 @@ -#ifndef __STG_SGCONF_UTILS_H__ -#define __STG_SGCONF_UTILS_H__ - -#include "stg/common.h" -#include "stg/resetable.h" - -#include -#include - -namespace SGCONF -{ - -template -inline -void MaybeSet(const std::map & options, const std::string & name, RESETABLE & 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; -} - -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); -} - -template <> -inline -void MaybeSet(const std::map & options, const std::string & name, RESETABLE & res) -{ -std::map::const_iterator it(options.find(name)); -if (it == options.end()) - return; -res = it->second; -} - -} // namespace SGCONF - -#endif