servicediscoveryandcontrol/pnp/test/upnp/Server/Flow/inc/csoapparser.inl
changeset 0 f5a58ecadc66
equal deleted inserted replaced
-1:000000000000 0:f5a58ecadc66
       
     1 // Copyright (c) 2008-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 //
       
    15 
       
    16 
       
    17 void CSoapParser::OnStartDocumentL(const Xml::RDocumentParameters& /*aDocParam*/, TInt aErrorCode)
       
    18 	{
       
    19 	User::LeaveIfError(aErrorCode);
       
    20 	}
       
    21 
       
    22 void CSoapParser::OnEndDocumentL(TInt aErrorCode)
       
    23 	{
       
    24 	User::LeaveIfError(aErrorCode);	
       
    25 	}
       
    26 
       
    27 void CSoapParser::OnStartPrefixMappingL(const RString& /*aPrefix*/, const RString& /*aUri*/, TInt aErrorCode)
       
    28 	{
       
    29 	User::LeaveIfError(aErrorCode);
       
    30 	}
       
    31 
       
    32 void CSoapParser::OnEndPrefixMappingL(const RString& /*aPrefix*/, TInt aErrorCode)
       
    33 	{
       
    34 	User::LeaveIfError(aErrorCode);
       
    35 	}
       
    36 
       
    37 void CSoapParser::OnIgnorableWhiteSpaceL(const TDesC8& /*aBytes*/, TInt aErrorCode)
       
    38 	{
       
    39 	User::LeaveIfError(aErrorCode);
       
    40 	}
       
    41 
       
    42 void CSoapParser::OnSkippedEntityL(const RString& /*aName*/, TInt aErrorCode)
       
    43 	{	
       
    44 	User::LeaveIfError(aErrorCode);	
       
    45 	}
       
    46 
       
    47 void CSoapParser::OnProcessingInstructionL(const TDesC8& /*aTarget*/, const TDesC8& /*aData*/, TInt aErrorCode)
       
    48 	{
       
    49 	User::LeaveIfError(aErrorCode);		
       
    50 	}
       
    51 
       
    52 void CSoapParser::OnError(TInt aErrorCode)	
       
    53 	{
       
    54 	iError = aErrorCode;
       
    55 	}
       
    56 
       
    57 TAny* CSoapParser::GetExtendedInterface(const TInt32 /*aUid*/)
       
    58 	{
       
    59 	return NULL;
       
    60 	}
       
    61 void CSoapParser::OnEndElementL(const RTagInfo& /*aElement*/, TInt aErrorCode)
       
    62 	{
       
    63 	User::LeaveIfError(aErrorCode);
       
    64 	}
       
    65 
       
    66 void CSoapParser::OnContentL(const TDesC8& /*aBytes*/, TInt aErrorCode)
       
    67 	{
       
    68 	User::LeaveIfError(aErrorCode);	
       
    69 	}