cellular/telephonysettings/xqbindings/psetwrapper/src/psetcliwrapper_p.h
branchRCL_3
changeset 20 987c9837762f
parent 19 7d48bed6ce0c
child 21 0a6dd2dc9970
equal deleted inserted replaced
19:7d48bed6ce0c 20:987c9837762f
     1 /*
       
     2  * Copyright (c) 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  *
       
    16  */
       
    17 
       
    18 
       
    19 #ifndef PSETCLIWRAPPER_P_H_
       
    20 #define PSETCLIWRAPPER_P_H_
       
    21 
       
    22 #include <mpsetcliobserver.h>
       
    23 
       
    24 class PSetCliWrapper;
       
    25 
       
    26 class PSetCliWrapperPrivate : public MPsetCliObserver
       
    27 {
       
    28 public:
       
    29     PSetCliWrapperPrivate( PSetCliWrapper &owner );
       
    30     ~PSetCliWrapperPrivate();
       
    31     
       
    32 public: // From MPsetCliObserver
       
    33     void SetEngineContact( MPsetCli* aEngine );
       
    34     void HandleCliRequestingL( TBool aOngoing, 
       
    35             TBool aInterrupted );
       
    36     void CliInformationL( TPsuiCli aType );
       
    37     void HandleCliStatusL( TUint8 aBsc[KPSetNumberOfBsc], TPsuiCli aMode );
       
    38     void HandleCnapStatusL( TInt aStatus );
       
    39     void HandleCliErrorL( TInt aError );
       
    40 private:
       
    41     PSetCliWrapper &m_Owner;
       
    42 };
       
    43 
       
    44 #endif
       
    45     
       
    46 // End of File.