creator/inc/creator_connectionmethodbase.h
changeset 0 d6fe6244b863
equal deleted inserted replaced
-1:000000000000 0:d6fe6244b863
       
     1 /*
       
     2 * Copyright (c) 2008 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 #ifndef __CCREATORCONNECTIONSETTINGSBASE_H_
       
    21 #define __CCREATORCONNECTIONSETTINGSBASE_H_
       
    22 
       
    23 #include "creator_modulebase.h"
       
    24 
       
    25 class CCreatorModuleBaseParameters;
       
    26 
       
    27 const TUint KRandomBearerType = 0xEEEEEEEE;
       
    28 
       
    29 class CCreatorConnectionSettingsBase : public CBase, public MCreatorModuleBase
       
    30     {
       
    31 public:
       
    32     
       
    33     virtual ~CCreatorConnectionSettingsBase(){};
       
    34 
       
    35     virtual TInt CreateConnectionSettingsEntryL(CCreatorModuleBaseParameters *aParameters) = 0;    
       
    36     virtual TUint32 AccessPointNameToIdL(const TDesC& aAPName, TBool aAnyIfNotFound = EFalse ) = 0;
       
    37     virtual void DeleteAllConnectionMethodsL(){};
       
    38     };
       
    39 
       
    40 #endif /*__CCREATORCONNECTIONSETTINGSBASE_H_*/