X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/e5499c61083684b28bcbc6950aae66cbf0938703..e9ae1f101b5418c0ba2e6c9d86b23c12f0140982:/stargazer/plugins/other/smux/tables.h diff --git a/stargazer/plugins/other/smux/tables.h b/stargazer/plugins/other/smux/tables.h index a1f97f67..edfe4377 100644 --- a/stargazer/plugins/other/smux/tables.h +++ b/stargazer/plugins/other/smux/tables.h @@ -6,8 +6,11 @@ #include "sensors.h" -class TARIFFS; -class USERS; +namespace STG +{ +struct Tariffs; +struct Users; +} class TableSensor { public: @@ -24,8 +27,8 @@ class TableSensor { class TariffUsersTable : public TableSensor { public: TariffUsersTable(const std::string & p, - TARIFFS & t, - USERS & u) + STG::Tariffs & t, + STG::Users & u) : TableSensor(p), tariffs(t), users(u) @@ -35,8 +38,8 @@ class TariffUsersTable : public TableSensor { void UpdateSensors(Sensors & sensors) const; private: - TARIFFS & tariffs; - USERS & users; + STG::Tariffs & tariffs; + STG::Users & users; }; typedef std::map Tables;