GetTimeSteps():
added default parameter 'start'; was set inside the funtion.
This commit is contained in:
parent
6d125c65fe
commit
45694106a7
@ -91,8 +91,10 @@ public:
|
|||||||
// helper function to find time steps for a tariff with PaymentMethod::Steps
|
// helper function to find time steps for a tariff with PaymentMethod::Steps
|
||||||
// (e.g. Schoenau/Koenigsee)
|
// (e.g. Schoenau/Koenigsee)
|
||||||
//
|
//
|
||||||
QList<int> &GetTimeSteps(Configuration *cfg, int paymentOptionIndex=0) const;
|
QList<int> &GetTimeSteps(Configuration *cfg, int paymentOptionIndex=0, QDateTime const &start = QDateTime::currentDateTime()) const;
|
||||||
QList<int> GetSteps(Configuration *cfg, int paymentOptionIndex=0) const { return GetTimeSteps(cfg, paymentOptionIndex); }
|
QList<int> GetSteps(Configuration *cfg, int paymentOptionIndex=0, QDateTime const &start = QDateTime::currentDateTime()) const {
|
||||||
|
return GetTimeSteps(cfg, paymentOptionIndex, start);
|
||||||
|
}
|
||||||
|
|
||||||
QList<int> GetPriceSteps(Configuration *cfg) const;
|
QList<int> GetPriceSteps(Configuration *cfg) const;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user