Location:
VWSDEF.H
class TVwsViewId;
Identifies an application view using two unique identifiers (UIDs): a view UID and an application UID.
The application UID is required so that the application associated with the view can be started if it is not already running.
Defined in TVwsViewId
:
TVwsViewId()
, TVwsViewId()
, TVwsViewId()
, iAppUid
, iViewUid
, operator!=()
, operator==()
inline TVwsViewId();
Constructs a TVwsViewId object, and initialises both the application UID and the view UID to NULL.
inline TVwsViewId(const TVwsViewId &aUid);
Constructs a new TVwsViewId object from an existing one. This simply performs a member-wise copy, each member variable of the passed in object is individually copied to the corresponding member variable of the new object.
|
inline TVwsViewId(TUid aAppUid, TUid aViewUid);
Constructs a TVwsViewId object with the specified application UID and view UID.
|
inline TBool operator==(const TVwsViewId &aUid) const;
Checks whether the TVwsViewId object being operated upon and the TVwsViewId object specified are the same.
Returns true if both application UIDs and both view UIDs are the same, otherwise returns false.
|
|
inline TBool operator!=(const TVwsViewId &aUid) const;
Checks whether the TVwsViewId object being operated upon and the TVwsViewId object specified are different.
Returns true if either the application UIDs or view UIDs are different, otherwise returns false.
|
|
TUid iAppUid;
A unique application ID (or application UID).
Uniquely identifies the application associated with the view.
TUid iViewUid;
A unique view ID (or view UID).
Uniquely identifies the view.