nettools/conntest/inc/CustomPrefsData.h
changeset 0 857a3e953887
equal deleted inserted replaced
-1:000000000000 0:857a3e953887
       
     1 /*
       
     2  * Copyright (c) 2006 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: CSettingsData stores the settings for ConnTest
       
    15  *
       
    16  */
       
    17 
       
    18 #ifndef CUSTOMPREFSDATA_H
       
    19 #define CUSTOMPREFSDATA_H
       
    20 
       
    21 // INCLUDES
       
    22 
       
    23 // FORWARD DECLARATIONS
       
    24 
       
    25 // CLASS DECLARATION
       
    26 
       
    27 /**
       
    28  * Class for encapsulating Custom Preferences data.
       
    29  */
       
    30 class CCustomPrefsData : public CBase
       
    31     {
       
    32 public:
       
    33     static CCustomPrefsData* NewL();
       
    34     ~CCustomPrefsData();
       
    35 
       
    36 private:
       
    37     CCustomPrefsData();
       
    38     void ConstructL();
       
    39 
       
    40 public:
       
    41     /** SNAP purpose. */
       
    42     // CMManager::TSnapPurpose iSnapPurpose;
       
    43     TInt iSnapPurpose;
       
    44     /** SNAP id. */
       
    45     TInt iSnapId;
       
    46     /** IAP id. */
       
    47     TInt iIapId;
       
    48     /** Bearer set. */
       
    49     TInt iBearerSet;
       
    50     /** UI behaviour. */
       
    51     // TUint32 iUiBehaviour;
       
    52     TInt iNoteBehaviour;
       
    53     /** Indicates whether UI disconnect dialog is shown. */
       
    54     TBool iDisconnectDialog;
       
    55     /** Indicates whether UI connection selection dialog is shown. */
       
    56     TBool iConnSelectionDialog;
       
    57     /** Indicates whether forced roaming is enabled. */
       
    58     TBool iForcedRoaming;
       
    59     };
       
    60 
       
    61 #endif
       
    62 
       
    63 // End of File