Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
1 // Copyright (c) 1997-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.
21 /** Holds the name of the help context.
25 typedef TBuf<30> TCoeContextName;
31 This class contains the information required to link the control and the appropriate
32 context sensitive help topic. This information includes the UID of the help
33 file and the literal descriptor for the appropriate help topic context.
35 @see CCoeControl::GetHelpContext()
40 IMPORT_C TCoeHelpContext();
41 IMPORT_C TCoeHelpContext(TUid aMajor,const TDesC& aContext);
42 IMPORT_C TBool IsNull() const;
43 IMPORT_C TBool operator==(const TCoeHelpContext& aContext) const;
44 IMPORT_C TBool operator!=(const TCoeHelpContext& aContext) const;
46 /** The UID of the context sensitive help file containing the topic information. */
48 /** The name of the help context. This is the literal descriptor generated from
49 a context string by the context sensitive help compiler. */
50 TCoeContextName iContext;
52 TInt iTCoeHelpContext_Reserved1;
55 #endif // __COEHELP_H__