epoc32/include/mw/sipprofiletypeinfo.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:33:34 +0100
branchSymbian3
changeset 4 837f303aceeb
parent 3 e1b950c65cb4
permissions -rw-r--r--
Current Symbian^3 public API header files (from PDK 3.0.h)
This is the epoc32/include tree with the "platform" subtrees removed, and
all but a selected few mbg and rsg files removed.
     1 /*
     2 * Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description:
    15 * Name        : sipprofiletypeinfo.h
    16 * Part of     : SIP Profile Client
    17 * Interface   : SDK API, SIP Profile API
    18 * The class provides a container for the profile type information
    19 * Version     : 1.0
    20 *
    21 */
    22 
    23 
    24 
    25 #ifndef TSIPPROFILETYPEINFO_H
    26 #define TSIPPROFILETYPEINFO_H
    27 
    28 //  INCLUDES
    29 #include <e32base.h>
    30 
    31 // FORWARD DECLARATIONS
    32 
    33 // CLASS DECLARATION
    34 /**
    35 *  @publishedAll
    36 *  @released
    37 *
    38 *  Container for the profile type information.
    39 *
    40 *  @lib sipprofilecli.lib
    41 */
    42 class TSIPProfileTypeInfo
    43     {
    44     public:
    45 
    46         /** Profile type name */
    47         typedef TBuf8<25> TSIPProfileName;
    48 
    49         /** Profile classes */
    50         enum TSIPProfileClass
    51             {
    52             /** Network compliant with IETF standards */
    53             EInternet,
    54             /** Network compliant with 3GPP standards */
    55             EIms,
    56             /** Other */
    57             EOther,
    58             /*Marks the end of enum, its value may change*/
    59             EMaxSIPProfileClass
    60             };
    61 
    62     public:  // data members
    63 
    64         /** Profile class */
    65         TSIPProfileClass iSIPProfileClass;
    66 
    67         /** Profile type name */
    68         TSIPProfileName iSIPProfileName;
    69     };
    70 
    71 #endif // TSIPPROFILETYPEINFO_H