os/ossrv/genericservices/httputils/AuthorityParser/TAuthorityParserInternal.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     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 // File contains local functions for use by the Authority parser class defined in
    15 // AuthorityParser.h.
    16 // 
    17 //
    18 
    19 /**
    20  @file TAuthorityParserInternal.h
    21  @see Authority8.h, Authority16.h
    22 */
    23 
    24 #ifndef __TAUTHORITYPARSERINTERNAL_H__
    25 #define __TAUTHORITYPARSERINTERNAL_H__
    26 
    27 // System includes
    28 //
    29 #include <e32base.h>
    30 
    31 template<class TPtrCType> 
    32 void DoParseAuthority(const TPtrCType& aAuthority, TPtrCType aComponent[]);
    33 
    34 template<class TPtrCType> 
    35 TInt ParseUserInfo(const TPtrCType& aAuthority, TPtrCType& aComponent);
    36 
    37 template<class TPtrCType> 
    38 TInt ParseHost(const TPtrCType& aAuthority, TPtrCType& aComponent);
    39 
    40 template<class TPtrCType> 
    41 TInt ParsePort(const TPtrCType& aAuthority, TPtrCType& aComponent);
    42 
    43 #endif	// __TAUTHORITYPARSERINTERNAL_H__