logsui/logsengine/tsrc/symbianos_stub/logseventdataparser_stub.cpp
changeset 27 de1630741fbe
parent 25 76a2435edfd4
child 28 3fad710701f2
child 31 2a11b5b00470
equal deleted inserted replaced
25:76a2435edfd4 27:de1630741fbe
     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 "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 // INCLUDE FILES
       
    19 #include <e32base.h>
       
    20 #include <logeng.h>
       
    21 
       
    22 #include "logseventdataparser.h"
       
    23 #include "logseventdata.h"
       
    24 #include "LogsApiConsts.h"
       
    25 
       
    26 // Separator for gprs data (old legacy non-tagged format for sent and
       
    27 // received grps data)
       
    28 _LIT8(KDataSeparator,",");  
       
    29 
       
    30 // ----------------------------------------------------------------------------
       
    31 // LogsEventDataParser::parse
       
    32 // ----------------------------------------------------------------------------
       
    33 //
       
    34 int LogsEventDataParser::parse( 
       
    35     const CLogEvent& /*source*/, LogsEventData& dest ) 
       
    36 {
       
    37     dest.mIsVT = true;
       
    38     return 0;
       
    39 }
       
    40 
       
    41 // ----------------------------------------------------------------------------
       
    42 // LogsEventDataParser::setMsgPartsNumber
       
    43 // Read msg parts. They are written in format of TLogSmsPduData in Data field
       
    44 // ----------------------------------------------------------------------------
       
    45 //
       
    46 void LogsEventDataParser::setMsgPartsNumber( const TDesC8 &/*data*/, LogsEventData& /*dest*/ ) 
       
    47 {
       
    48 }
       
    49 
       
    50 // ----------------------------------------------------------------------------
       
    51 // LogsEventDataParser::checkNonTaggedData
       
    52 // ----------------------------------------------------------------------------
       
    53 //
       
    54 bool LogsEventDataParser::checkNonTaggedData( const TDesC8 &/*data*/, LogsEventData& /*dest*/ ) 
       
    55 {
       
    56 return true;
       
    57 }
       
    58 
       
    59 
       
    60 // ----------------------------------------------------------------------------
       
    61 // LogsEventDataParser::checkTaggedData
       
    62 // ----------------------------------------------------------------------------
       
    63 //
       
    64 void LogsEventDataParser::checkTaggedData( const TDesC8 &/*data*/, LogsEventData& /*dest*/ ) 
       
    65 {
       
    66 }