class TChannel;
Description
Class representing a digital radio channel.
Members
Defined in TChannel
:
TChannel()
, TChannel()
, iChannel
, operator!=()
, operator>()
, operator>=()
, operator<()
, operator<=()
, operator==()
inline TChannel();
Description
Default constructor initialises the TChannel object to zero
inline TChannel(TInt aChannel);
Description
Initialises a TChannel object to the value passed in
Parameters
TInt aChannel |
Initial value of the TChannel object
|
|
inline TInt operator==(const TChannel &aChannel) const;
Description
Parameters
Return value
TInt
|
non-zero if aChannel is equal to the value, zero otherwise
|
|
inline TInt operator!=(const TChannel &aChannel) const;
Description
Parameters
Return value
TInt
|
non-zero if aChannel is not equal to the value, zero otherwise
|
|
inline TInt operator>(const TChannel &aChannel) const;
Description
Parameters
Return value
TInt
|
non-zero if the value is greater than aChannel, zero otherwise
|
|
inline TInt operator>=(const TChannel &aChannel) const;
Description
Parameters
Return value
TInt
|
non-zero if the value is greater than or equal to aChannel, zero otherwise
|
|
inline TInt operator<(const TChannel &aChannel) const;
Description
Parameters
Return value
TInt
|
non-zero if the value is less than aChannel, zero otherwise
|
|
inline TInt operator<=(const TChannel &aChannel) const;
Description
Parameters
Return value
TInt
|
non-zero if the value is less than or equal to aChannel, zero otherwise
|
|