websrv_pub/web_service_connection_api/tsrc/wsPolicyTester/inc/myxml.h
changeset 0 62f9d29f7211
equal deleted inserted replaced
-1:000000000000 0:62f9d29f7211
       
     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: Header declaration
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 
       
    23 
       
    24 #ifndef MYXMLELE_H
       
    25 #define MYXMLELE_H
       
    26 
       
    27 #include <e32std.h>
       
    28 #include <f32file.h>
       
    29 #include "SenDomFragment.h"
       
    30 
       
    31 
       
    32 class CMyXmlEle :public CSenDomFragment
       
    33 {
       
    34 public:    
       
    35     static CMyXmlEle* NewL();
       
    36     static CMyXmlEle* NewLC();
       
    37     ~CMyXmlEle();
       
    38     
       
    39     void ReadFileL(TFileName aPath);
       
    40     void WriteAllL(CSenElement* aXml);
       
    41     CSenElement* XMLDocL();
       
    42 private:
       
    43 
       
    44     CMyXmlEle();
       
    45     void ConstructL();
       
    46     TInt count;
       
    47 
       
    48 };
       
    49 
       
    50 #endif