adaptationlayer/modematadaptation/modematcontroller_dll/inc/ccommandmodereq.h
changeset 0 63b37f68c1ce
equal deleted inserted replaced
-1:000000000000 0:63b37f68c1ce
       
     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 the License "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 CCOMMANDMODEREQ_H
       
    21 #define CCOMMANDMODEREQ_H
       
    22 
       
    23 #include <e32base.h>
       
    24 
       
    25 class RModemAtController;
       
    26 
       
    27 class CCommandModeReq : public CActive
       
    28 	{
       
    29 public:
       
    30 	CCommandModeReq( RModemAtController* aClient);
       
    31 	~CCommandModeReq();
       
    32 	static CCommandModeReq* NewL( RModemAtController* aClient );
       
    33     
       
    34 protected:
       
    35     // from CActive
       
    36     void RunL();
       
    37     void DoCancel();
       
    38 	
       
    39 private:
       
    40     //data
       
    41     RModemAtController* iClient;
       
    42     HBufC8* iResponseBuf;
       
    43     TPtr8 iResponse;
       
    44     };
       
    45 
       
    46 #endif  // CCOMMANDMODEREQ_H
       
    47