X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/43ac308ea20014761481bc40525496a0bb1d9740..b27841d687ec9e84983340b5581376dfb24010ea:/projects/stargazer/plugins/other/smux/tables.cpp diff --git a/projects/stargazer/plugins/other/smux/tables.cpp b/projects/stargazer/plugins/other/smux/tables.cpp index 21173b70..ead98f38 100644 --- a/projects/stargazer/plugins/other/smux/tables.cpp +++ b/projects/stargazer/plugins/other/smux/tables.cpp @@ -1,16 +1,26 @@ -#include -#include -#include -#include +#include "tables.h" #include "stg/user_property.h" #include "stg/tariffs.h" #include "stg/tariff_conf.h" #include "stg/users.h" -#include "tables.h" +#include +#include +#include +#include + +using STG::TariffUsersTable; -std::pair TD2Info(const STG::TariffData & td); +namespace +{ + +std::pair TD2Info(const STG::TariffData & td) +{ + return std::make_pair(td.tariffConf.name, 0); +} + +} void TariffUsersTable::UpdateSensors(Sensors & sensors) const { @@ -58,8 +68,3 @@ while (it != data.end()) ++it; } } - -std::pair TD2Info(const STG::TariffData & td) -{ -return std::make_pair(td.tariffConf.name, 0); -}