epoc32/include/authoritycommon.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:27:01 +0100
branchSymbian2
changeset 3 e1b950c65cb4
parent 0 061f57f2323e
child 4 837f303aceeb
permissions -rw-r--r--
Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
     1 // Copyright (c) 2001-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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // Internal header file with common information used by the authority
    15 // classes TAuthorityC??, CAuthority?? and TAuthorityParser??.
    16 // 
    17 //
    18 
    19 
    20 
    21 /**
    22  @file AuthorityCommon.h
    23  @publishedAll
    24  @released
    25  @see Authority8.h, Authority16.h
    26 */
    27 
    28 #ifndef __AUTHORITYCOMMON_H__
    29 #define __AUTHORITYCOMMON_H__
    30 
    31 // System includes
    32 //
    33 #include <e32base.h>
    34 
    35 /**
    36 enum TAuthorityComponent
    37 Enum defining the authority components.
    38 @publishedAll
    39 @released
    40 @warning		The enum value EAuthorityMaxComponents should not be used as it will 
    41 cause a panic.
    42 @since			6.0	
    43 */
    44 enum TAuthorityComponent
    45 	{
    46 	/** 
    47 		The userinfo component specifier 
    48 	*/
    49 	EAuthorityUserinfo = 0,
    50 	/** 
    51 		The host component specifier 
    52 	*/
    53 	EAuthorityHost,
    54 	/** 
    55 		The port component specifier 
    56 	*/
    57 	EAuthorityPort,
    58 	/** 
    59 		Do not use as a field specifier - will cause panic 
    60 	*/
    61 	EAuthorityMaxComponents,
    62 	/** 
    63 		The complete Authority. Only use with DisplayFormL, otherwise will cause panic 
    64 	*/
    65 	EAuthorityComplete = -1
    66 	};
    67 		
    68 #endif	// __AUTHORITYCOMMON_H__