Symbian Developer Library

SYMBIAN OS V6.1 EDITION FOR C++

[Index] [Glossary] [Previous] [Next]



Location: e32std.h
Link against:

Class TTimeIntervalMicroSeconds32

TTimeIntervalMicroSeconds32

Support

Supported from 5.0

Description

Represents a microsecond time interval stored in 32 rather than 64 bits. Its range is +–2147483647, which is +–35 minutes, 47 seconds. Comparison and interval retrieval functions are provided by the base class TTimeIntervalBase.

Derivation

TTimeIntervalBaseProvides a base class for all time interval classes using a 32-bit representation
TTimeIntervalMicroSeconds32Represents a microsecond time interval stored in 32 rather than 64 bits

Defined in TTimeIntervalMicroSeconds32:
TTimeIntervalMicroSeconds32(), operator=()

Inherited from TTimeIntervalBase:
Int(), operator!=(), operator<(), operator<=(), operator==(), operator>(), operator>=()


Construction and destruction


TTimeIntervalMicroSeconds32()

TTimeIntervalMicroSeconds32();

Description

Constructs an uninitialised TTimeIntervalMicroSeconds32 object. It is necessary because there is also a non-default constructor in this class.


TTimeIntervalMicroSeconds32()

TTimeIntervalMicroSeconds32(TInt aInterval);

Description

Constructs the object with a TInt.

Parameters

TInt aInterval

The interval with which to initialise the newly-constructed TTimeIntervalMicroSeconds32.

[Top]


Assignment


operator=()

TTimeIntervalMicroSeconds32& operator=(TInt aInterval);

Description

Assigns an interval value to this TTimeIntervalMicroSeconds32.

Parameters

TInt aInterval

The interval to assign to this TTimeIntervalMicroSeconds32.

Return value

TTimeIntervalMicroSeconds32&

This TTimeIntervalMicroSeconds32.