coreapplicationuis/ATCmdPlugin/inc/atcmd.h
changeset 21 c4cbaa4fb734
equal deleted inserted replaced
0:2e3d3ce01487 21:c4cbaa4fb734
       
     1 
       
     2 /*
       
     3  * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     4  * All rights reserved.
       
     5  * This component and the accompanying materials are made available
       
     6  * under the terms of "Eclipse Public License v1.0"
       
     7  * which accompanies this distribution, and is available
       
     8  * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     9  * Initial Contributors:
       
    10  * Nokia Corporation - initial contribution.
       
    11  *
       
    12  * Contributors:
       
    13  * Description :
       
    14  *
       
    15  */
       
    16 
       
    17 
       
    18 #ifndef __ATCMD_H
       
    19 #define __ATCMD_H
       
    20 
       
    21 // INCLUDES
       
    22 #include <e32base.h>
       
    23 
       
    24 // FORWARD DECLARATIONS
       
    25 
       
    26 // CLASS DECLARATION
       
    27 class TATCkpdCmd
       
    28   	{
       
    29     public:
       
    30         inline TATCkpdCmd() {}
       
    31     public:
       
    32         TInt iCode;
       
    33         TTimeIntervalMicroSeconds32 iStrokeDelay;
       
    34         TTimeIntervalMicroSeconds32 iStrokeTime;
       
    35     };
       
    36 
       
    37 class CATCmdTranslation
       
    38     : public CBase
       
    39     {
       
    40     public:
       
    41         CATCmdTranslation( HBufC8& aParam, const TInt aCode );
       
    42         ~CATCmdTranslation();
       
    43     public:
       
    44         TInt Code() const;
       
    45         TPtrC8 Param() const;
       
    46     private:
       
    47         HBufC8* iParam;
       
    48         const TInt iCode;
       
    49 
       
    50     };
       
    51 
       
    52 
       
    53 
       
    54 #endif // __ATCMD_H
       
    55             
       
    56 // End of File