X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/20d884ddac6b8cacedb2701e282efe3ff9785cbf..01cdd74060b063287784d3aff7f9f861a404b789:/projects/sgconf/tariffs.h?ds=sidebyside diff --git a/projects/sgconf/tariffs.h b/projects/sgconf/tariffs.h new file mode 100644 index 00000000..28f25f91 --- /dev/null +++ b/projects/sgconf/tariffs.h @@ -0,0 +1,34 @@ +#ifndef __STG_SGCONF_TARIFFS_H__ +#define __STG_SGCONF_TARIFFS_H__ + +#include +#include + +namespace SGCONF +{ + +class CONFIG; + +bool GetTariffsFunction(const CONFIG & config, + const std::string & /*arg*/, + const std::map & /*options*/); + +bool GetTariffFunction(const CONFIG & config, + const std::string & arg, + const std::map & /*options*/); + +bool DelTariffFunction(const CONFIG & config, + const std::string & arg, + const std::map & /*options*/); + +bool AddTariffFunction(const CONFIG & config, + const std::string & arg, + const std::map & options); + +bool ChgTariffFunction(const CONFIG & config, + const std::string & arg, + const std::map & options); + +} // namespace SGCONF + +#endif