webservices/wsfragment/src/senparser.cpp
changeset 0 62f9d29f7211
equal deleted inserted replaced
-1:000000000000 0:62f9d29f7211
       
     1 /*
       
     2 * Copyright (c) 2002-2006 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:        Class implements XML Parser capable of service multiple handlers
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 
       
    23 
       
    24 
       
    25 // INCLUDE FILES
       
    26 #include <e32std.h>
       
    27 #include "senparserimpl.h"
       
    28 
       
    29 CSenParser::CSenParser()
       
    30     {
       
    31     }
       
    32 
       
    33 EXPORT_C CSenParser* CSenParser::NewL()
       
    34     {
       
    35     return CSenParserImpl::NewL();
       
    36     }
       
    37 
       
    38 EXPORT_C CSenParser* CSenParser::NewLC()
       
    39     {
       
    40     return CSenParserImpl::NewLC();
       
    41     }
       
    42 
       
    43 EXPORT_C CSenParser* CSenParser::NewL(CParser* apParser)
       
    44     {
       
    45     return CSenParserImpl::NewL(apParser);
       
    46     }
       
    47 
       
    48 EXPORT_C CSenParser* CSenParser::NewLC(CParser* apParser)
       
    49     {
       
    50     return CSenParserImpl::NewLC(apParser);
       
    51     }
       
    52 
       
    53 EXPORT_C CSenParser* CSenParser::NewL(const TDesC8& aParserMimeType)
       
    54     {
       
    55     return CSenParserImpl::NewL(aParserMimeType);
       
    56     }
       
    57 
       
    58 EXPORT_C CSenParser* CSenParser::NewLC(const TDesC8& aParserMimeType)
       
    59     {
       
    60     return CSenParserImpl::NewLC(aParserMimeType);
       
    61     }
       
    62 
       
    63 // End of file
       
    64 
       
    65 
       
    66 
       
    67