Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
1 // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
19 inline TMsvId CMsvEntry::EntryId() const
20 /** Gets the ID of the context.
22 @return Current context's entry ID */
24 return iEntryPtr->Id();
27 inline const TMsvEntry& CMsvEntry::Entry() const
28 /** Gets the index entry for the context.
30 @return Current context's index entry */
35 inline CMsvSession& CMsvEntry::Session()
36 /** Gets the Message Server session used by this object. This is the same session
37 passed by the client in NewL().
39 @return The session used by the object */
44 inline const TMsvSelectionOrdering& CMsvEntry::SortType() const
45 /** Gets the current sort order of children of the entry. The sort order is initially
48 @return Current sort order */
53 inline TInt CMsvEntry::Count() const
54 /** Gets the number of children of the context.
56 @return Count of the child entries for the current context */
58 return iSortedChildren->Count();
61 inline TMsvId CMsvEntry::OwningService() const
62 /** Gets the ID of the service entry that owns the context.
64 Local entries are considered as being members of the local service:
66 @return ID of the service entry that the context is under. */
68 return iOwningService;
72 //**********************************
74 //**********************************
76 inline TMsvOp CMsvOperation::Id() const
77 /** Gets the operation ID.
79 This ID is unique within a Message Server session. The ID allows the client
80 to keep track of different operations.
82 @return The ID of the operation */
87 inline TMsvId CMsvOperation::Service() const
88 /** Gets the ID of the service that is associated with this operation.
90 If the operation is not associated with a service, the function returns KMsvLocalServiceIndexEntryId.
92 @return ID of the service associated with the operation */