cbsref/telephonyrefplugins/atltsy/atcommand/generic/inc/respondbufparser.h
changeset 49 f50f4094acd7
equal deleted inserted replaced
48:14460bf2a402 49:f50f4094acd7
       
     1 // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // This contains CRespondBufParser which provide an algorithm to analize the passed data from baseband
       
    15 //
       
    16 
       
    17 #ifndef __CRESPONDBUFPARSER_H__
       
    18 #define __CRESPONDBUFPARSER_H__
       
    19 #include <e32cmn.h> 
       
    20 #include <e32base.h>
       
    21 
       
    22 /**
       
    23 * This class is used to analyze the passed data and put the value in the buffer store
       
    24 *
       
    25 */
       
    26 class CRespondBufParser : public CBase
       
    27 	{
       
    28 public:
       
    29     /**
       
    30     * Constructor
       
    31     */
       
    32 	CRespondBufParser();
       
    33 	
       
    34 	/**
       
    35 	* Destructor
       
    36 	*/
       
    37 	virtual ~CRespondBufParser();
       
    38 	
       
    39 	/**
       
    40 	* Parse the responsed data
       
    41 	*/
       
    42 	void ParseRespondedBuffer(RArray<TPtrC8>& aArray, const TDesC8& aBuf);
       
    43 	};
       
    44 
       
    45 #endif