]> git.stg.codes - stg.git/blobdiff - projects/stargazer/tariff_impl.h
Ticket 37. The time_t currentTime parameter added in
[stg.git] / projects / stargazer / tariff_impl.h
index 8fc32fcf404b01c1c7ee60b8ec91ad580ce498fa..0619d50bb5f852f725833a6294e613b8e31c88b5 100644 (file)
@@ -72,7 +72,8 @@ public:
     double  GetFee() const { return tariffData.tariffConf.fee; }
     double  GetFree() const { return tariffData.tariffConf.free; }
     PERIOD  GetPeriod() const { return tariffData.tariffConf.period; }
-    CHANGE_POLICY  GetChangePolicy() const { return tariffData.tariffConf.change_policy; }
+    CHANGE_POLICY GetChangePolicy() const { return tariffData.tariffConf.changePolicy; }
+    time_t GetChangePolicyTimeout() const { return tariffData.tariffConf.changePolicyTimeout; }
 
     void    Print() const;
 
@@ -88,6 +89,7 @@ public:
     TARIFF_IMPL & operator=(const TARIFF_IMPL & t);
     bool     operator==(const TARIFF_IMPL & rhs) const { return GetName() == rhs.GetName(); }
     bool     operator!=(const TARIFF_IMPL & rhs) const { return GetName() != rhs.GetName(); }
+    std::string TariffChangeIsAllowed(const TARIFF & to, time_t currentTime) const;
 
 private:
     TARIFF_DATA     tariffData;