bluetoothengine/btsac/inc/btsacStateIdle.h
changeset 0 f63038272f30
equal deleted inserted replaced
-1:000000000000 0:f63038272f30
       
     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:  state Idle declaration.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_BTSACIDLE_H
       
    20 #define C_BTSACIDLE_H
       
    21 
       
    22 #include "btsacState.h"
       
    23 
       
    24 /**
       
    25  * The state Idle
       
    26  *
       
    27  *
       
    28  *  @since S60 v3.1 
       
    29  */
       
    30 class CBtsacIdle : public CBtsacState
       
    31     {
       
    32     
       
    33 public:
       
    34 
       
    35     static CBtsacIdle* NewL(CBTSAController& aParent);
       
    36     
       
    37     virtual ~CBtsacIdle();
       
    38     
       
    39 private:
       
    40     
       
    41     // From base class CBtsacState
       
    42     
       
    43     /**
       
    44      * From CBtsacState
       
    45      * Entry of this state.
       
    46      */
       
    47     void EnterL();
       
    48     
       
    49     // From base class MInternalGavdpUser
       
    50     
       
    51     void GAVDP_ConfigurationConfirm();
       
    52     void GAVDP_Error(TInt aError, const TDesC8& aErrorData);
       
    53 
       
    54 private:    
       
    55 
       
    56     CBtsacIdle(CBTSAController& aParent);
       
    57     };
       
    58 
       
    59 #endif // C_BTSACIDLE_H
       
    60