]> git.stg.codes - stg.git/blob - tests/testtariffs.h
Port to CMake, get rid of os_int.h.
[stg.git] / tests / testtariffs.h
1 #ifndef __TEST_TARIFFS_H__
2 #define __TEST_TARIFFS_H__
3
4 #include "stg/tariffs.h"
5
6 #include "tariff_impl.h"
7
8 class TEST_TARIFFS : public TARIFFS {
9     public:
10         TEST_TARIFFS() : testTariff("") {}
11
12         int            ReadTariffs () { return 0; }
13         const TARIFF * FindByName(const std::string & /*name*/) const { return &testTariff; }
14         const TARIFF * GetNoTariff() const { return NULL; }
15         int            Del(const std::string & /*name*/, const ADMIN * /*admin*/) { return 0; }
16         int            Add(const std::string & /*name*/, const ADMIN * /*admin*/) { return 0; }
17         int            Chg(const TARIFF_DATA & /*td*/, const ADMIN * /*admin*/) { return 0; }
18
19         void AddNotifierAdd(NOTIFIER_BASE<TARIFF_DATA> *) {}
20         void DelNotifierAdd(NOTIFIER_BASE<TARIFF_DATA> *) {}
21
22         void AddNotifierDel(NOTIFIER_BASE<TARIFF_DATA> *) {}
23         void DelNotifierDel(NOTIFIER_BASE<TARIFF_DATA> *) {}
24
25         void           GetTariffsData(std::list<TARIFF_DATA> * /*tdl*/) const {}
26
27         size_t         Count() const { return 0; }
28
29         const std::string & GetStrError() const { return strError; }
30
31         void           SetFee(double fee);
32
33     private:
34         std::string strError;
35         TARIFF_IMPL testTariff;
36 };
37
38 inline
39 void TEST_TARIFFS::SetFee(double fee)
40 {
41     TARIFF_DATA td(testTariff.GetTariffData());
42     td.tariffConf.fee = fee;
43     testTariff = td;
44 }
45
46 #endif