os/ossrv/genericservices/httputils/inc/AuthorityCommon.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     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 "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.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  @file AuthorityCommon.h
    21  @publishedAll
    22  @released
    23  @see Authority8.h, Authority16.h
    24 */
    25 
    26 #ifndef __AUTHORITYCOMMON_H__
    27 #define __AUTHORITYCOMMON_H__
    28 
    29 // System includes
    30 //
    31 #include <e32base.h>
    32 
    33 /**
    34 enum TAuthorityComponent
    35 Enum defining the authority components.
    36 @publishedAll
    37 @released
    38 @warning		The enum value EAuthorityMaxComponents should not be used as it will 
    39 cause a panic.
    40 @since			6.0	
    41 */
    42 enum TAuthorityComponent
    43 	{
    44 	/** 
    45 		The userinfo component specifier 
    46 	*/
    47 	EAuthorityUserinfo = 0,
    48 	/** 
    49 		The host component specifier 
    50 	*/
    51 	EAuthorityHost,
    52 	/** 
    53 		The port component specifier 
    54 	*/
    55 	EAuthorityPort,
    56 	/** 
    57 		Do not use as a field specifier - will cause panic 
    58 	*/
    59 	EAuthorityMaxComponents,
    60 	/** 
    61 		The complete Authority. Only use with DisplayFormL, otherwise will cause panic 
    62 	*/
    63 	EAuthorityComplete = -1
    64 	};
    65 		
    66 #endif	// __AUTHORITYCOMMON_H__