telutils/phoneparser/src/CPhoneGsmMiscHandler.cpp
branchRCL_3
changeset 19 7d48bed6ce0c
parent 0 ff3b6d0fd310
child 20 987c9837762f
equal deleted inserted replaced
18:594d59766373 19:7d48bed6ce0c
     9 * Initial Contributors:
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    10 * Nokia Corporation - initial contribution.
    11 *
    11 *
    12 * Contributors:
    12 * Contributors:
    13 *
    13 *
    14 * Description:  Implementation of handlers for USSD and IMEI.
    14 * Description:  Implementation of handler for USSD.
    15 *
    15 *
    16 */
    16 */
    17 
    17 
    18 
    18 
    19 // INCLUDE FILES
    19 // INCLUDE FILES
    20 #include    "CPhoneGsmMiscHandler.h"
    20 #include    "cphonegsmmischandler.h" 
    21 #include    "CPhoneGsmParserBase.h"
    21 #include    "cphonegsmparserbase.h" 
    22 #include    "CPhoneGsmParserResult.h"
    22 #include    "cphonegsmparserresult.h" 
    23 
    23 
    24 // ============================ MEMBER FUNCTIONS ===============================
    24 // ============================ MEMBER FUNCTIONS ===============================
    25 
    25 
    26 // -----------------------------------------------------------------------------
    26 // -----------------------------------------------------------------------------
    27 // CPhoneGsmMiscHandler::ProcessL
    27 // CPhoneGsmMiscHandler::ProcessL
    40                 // First parameter is ussd string.
    40                 // First parameter is ussd string.
    41                 ProcessUssdL( aResult.ParameterAt( 0 ) );
    41                 ProcessUssdL( aResult.ParameterAt( 0 ) );
    42                 }
    42                 }
    43             break;
    43             break;
    44 
    44 
    45         case KPhoneUidIMEI:
       
    46             ProcessShowIMEIL();
       
    47             break;
       
    48 
       
    49         default:
    45         default:
    50             break;
    46             break;
    51         }
    47         }
    52     }   
    48     }   
    53 
    49