natfw/tsrc/natfwtestconsoles/natfwtestconsole/inc/additionalicesettings.h
changeset 0 1bce908db942
equal deleted inserted replaced
-1:000000000000 0:1bce908db942
       
     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:    
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 #ifndef __ADDITIONALICESETTINGS_H__
       
    22 #define __ADDITIONALICESETTINGS_H__
       
    23 
       
    24 #include <e32base.h>
       
    25 
       
    26 #include "settings.h" 
       
    27 
       
    28 
       
    29 class CAdditionalIceSettings : public CSettings
       
    30 {
       
    31 public:
       
    32     static CAdditionalIceSettings* NewL( const TDesC8& aDomain );
       
    33     static CAdditionalIceSettings* NewLC( const TDesC8& aDomain );
       
    34 
       
    35     ~CAdditionalIceSettings( );
       
    36     
       
    37 protected: // from CSettings
       
    38     void CreateSettingsL();
       
    39 
       
    40 private:
       
    41     void ConstructL( const TDesC8& aDomain );
       
    42     CAdditionalIceSettings();
       
    43            
       
    44 private: //DATA
       
    45     TUint32 iDomainKey;
       
    46     HBufC8 *iDomain;
       
    47 };
       
    48 
       
    49 #endif //__ADDITIONALICESETTINGS_H__