gehe zur Dokumentation dieser Datei
21 double mLandlineCentsPerMinute, mLandlineCentsPerCall;
22 double mMobileCentsPerMinute, mMobileCentsPerCall;
25 explicit CallCost(
int pFreeSeconds = 0,
double pLandlineCentsPerMinute = 0.0,
double pLandlineCentsPerCall = 0.0,
double pMobileCentsPerMinute = 0.0,
double pMobileCentsPerCall = 0.0);
26 explicit CallCost(
const QJsonValue& pJson);
31 [[nodiscard]]
bool isNull()
const;
42 return &pLeft == &pRight || (
43 pLeft.mFreeSeconds == pRight.mFreeSeconds &&
44 pLeft.mLandlineCentsPerMinute == pRight.mLandlineCentsPerMinute &&
45 pLeft.mLandlineCentsPerCall == pRight.mLandlineCentsPerCall &&
46 pLeft.mMobileCentsPerMinute == pRight.mMobileCentsPerMinute &&
47 pLeft.mMobileCentsPerCall == pRight.mMobileCentsPerCall);
QDebug operator<<(QDebug pDbg, const governikus::CallCost &pCallCost)
Definition: CallCost.cpp:79
Definition: CallCost.h:17
QDebug operator<<(QDebug pDbg, const CardInfo &pCardInfo)
Definition: CardInfo.cpp:281
bool operator==(const CVCertificate &pLeft, const CVCertificate &pRight)
Definition: CVCertificate.h:72
double getLandlineCentsPerCall() const
Definition: CallCost.cpp:61
friend bool operator==(const CallCost &pLeft, const CallCost &pRight)
Definition: CallCost.h:40
int getFreeSeconds() const
Definition: CallCost.cpp:49
Implementation of ActivationContext for Intent based activation on Android systems.
Definition: ActivationContext.h:15
double getMobileCentsPerCall() const
Definition: CallCost.cpp:73
CallCost(int pFreeSeconds=0, double pLandlineCentsPerMinute=0.0, double pLandlineCentsPerCall=0.0, double pMobileCentsPerMinute=0.0, double pMobileCentsPerCall=0.0)
Definition: CallCost.cpp:23
double getMobileCentsPerMinute() const
Definition: CallCost.cpp:67
bool isNull() const
Definition: CallCost.cpp:43
double getLandlineCentsPerMinute() const
Definition: CallCost.cpp:55