bluetoothengine/btsac/inc/btsacStateAborting.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 Aborting declaration.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_BTSACABORTING_H
       
    20 #define C_BTSACABORTING_H
       
    21 
       
    22 #include "btsacState.h"
       
    23 
       
    24 /**
       
    25  * The state Aborting
       
    26  *
       
    27  *
       
    28  *  @since S60 v3.1 
       
    29  */
       
    30 class CBtsacAborting : public CBtsacState
       
    31     {
       
    32     
       
    33 public:
       
    34 
       
    35     static CBtsacAborting* NewL(CBTSAController& aParent);
       
    36     
       
    37     virtual ~CBtsacAborting();
       
    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 	void HandleGavdpErrorL(TInt aError);
       
    50 
       
    51 private:    
       
    52 
       
    53     CBtsacAborting(CBTSAController& aParent);
       
    54     };
       
    55 
       
    56 #endif      // C_BTSACABORTING_H
       
    57