|
|
|
class CValidityPeriod : public CBase;
The period for which the certificate is valid.
CBase -
Base class for all classes to be instantiated on the heap.
CValidityPeriod - The period for which the certificate is valid.
Defined in CValidityPeriod:
CValidityPeriod()Default constructor. CValidityPeriod(const CValidityPeriod &)Copy constructor.Finish()constGets the end of the validity period.Start()constGets the start of the validity period.Valid(const TTime &)constTests whether the specified date and time is within the validity period.iFinishThe end time of the validity period. iStartThe start time of the validity period. Inherited from CBase:
Delete(CBase *)Deletes the specified object.Extension_(TUint,TAny *&,TAny *)Extension function operator new(TUint)Allocates the object from the heap and then initialises its contents to binary z...operator new(TUint,TAny *)Initialises the object to binary zeroes.operator new(TUint,TLeave)Allocates the object from the heap and then initialises its contents to binary z...operator new(TUint,TLeave,TUint)Allocates the object from the heap and then initialises its contents to binary z...operator new(TUint,TUint)Allocates the object from the heap and then initialises its contents to binary z...IMPORT_C CValidityPeriod(const CValidityPeriod &aValidityPeriod);
Copy constructor.
|
IMPORT_C TBool Valid(const TTime &aTime) const;
Tests whether the specified date and time is within the validity period.
|
|
IMPORT_C const TTime& Start() const;
Gets the start of the validity period.
|
IMPORT_C const TTime& Finish() const;
Gets the end of the validity period.
|
protected: TTime iFinish;
The end time of the validity period.