presencefwsimpleadpt/inc/msimplepluginsettings.h
changeset 0 c8caa15ef882
equal deleted inserted replaced
-1:000000000000 0:c8caa15ef882
       
     1 /*
       
     2 * Copyright (c) 2007 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:    Presence FW SIMPLE plugin engine settings
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 #ifndef MSIMPLEPLUGINCONNECTIONSETTINGS_H
       
    22 #define MSIMPLEPLUGINCONNECTIONSETTINGS_H
       
    23 
       
    24 #include <e32std.h>
       
    25 
       
    26 class CSimplePluginVariation;
       
    27 
       
    28 /**
       
    29  *  MSimplePluginConnectionObs
       
    30  *
       
    31  *  SIMPLE engine connection
       
    32  *
       
    33  *  @lib simpleengine
       
    34  *  @since s60 v5.0
       
    35  */
       
    36 
       
    37 class MSimplePluginSettings
       
    38     {
       
    39 
       
    40 public:
       
    41 
       
    42     /**
       
    43      * Current registered SIP entity
       
    44      */
       
    45     virtual TPtrC16 CurrentSipPresentity() = 0;
       
    46 
       
    47     /**
       
    48      * Current registered SIP entity
       
    49      */
       
    50     virtual TPtrC8 CurrentSipPresentity8() = 0;
       
    51 
       
    52     /**
       
    53      * Current domain syntax accessor
       
    54      */
       
    55     virtual TPtrC16 CurrentDomain() = 0;
       
    56     
       
    57     /**
       
    58      * Variation
       
    59      */
       
    60     virtual CSimplePluginVariation& Variation() = 0; 
       
    61 
       
    62     };
       
    63 
       
    64 #endif
       
    65 
       
    66 // End of File