phonesrv_plat/string_parser_api/inc/CPhoneGsmHandlerBase.h
changeset 46 2fa1fa551b0b
parent 42 35488577e233
child 48 78df25012fda
equal deleted inserted replaced
42:35488577e233 46:2fa1fa551b0b
     1 /*
       
     2 * Copyright (c) 2002 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:  It is base class for all handlers.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef CPHONEGSMHANDLERBASE_H
       
    20 #define CPHONEGSMHANDLERBASE_H
       
    21 
       
    22 // INCLUDES
       
    23 #include    <e32base.h>
       
    24 
       
    25 // FORWARD DECLARATIONS
       
    26 class CPhoneGsmParserResult;
       
    27 
       
    28 // CLASS DECLARATION
       
    29 
       
    30 /**
       
    31 * It is base class for all handlers.
       
    32 *
       
    33 * @since 1.0
       
    34 * @lib phoneparser.lib
       
    35 */
       
    36 class CPhoneGsmHandlerBase 
       
    37     : public CBase
       
    38     {
       
    39     public: // New functions
       
    40         
       
    41         /**
       
    42         * Process the results of parsing.
       
    43         *
       
    44         * @param aResult It is results to be processed.
       
    45         */
       
    46         virtual void ProcessL( 
       
    47             CPhoneGsmParserResult& aResult ) = 0;
       
    48 
       
    49     };
       
    50 
       
    51 #endif      // CPHONEGSMHANDLERBASE_H
       
    52             
       
    53 // End of File