svgtopt/SVG/SVGImpl/inc/SVGDOM/SVGLangSpace.h
changeset 0 d46562c3d99d
equal deleted inserted replaced
-1:000000000000 0:d46562c3d99d
       
     1 /*
       
     2 * Copyright (c) 2003 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:  SVG Implementation header file
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef _INC_MSVGLANGSPACE_
       
    20 #define _INC_MSVGLANGSPACE_
       
    21 
       
    22 #include <e32base.h>
       
    23 #include <badesca.h>
       
    24 
       
    25 
       
    26 
       
    27 /**
       
    28  * Class description goes here.
       
    29  *
       
    30  *  @lib SVGEngine.lib
       
    31  *  @since 1.0
       
    32  */
       
    33 class MSvgLangSpace
       
    34     {
       
    35     public:
       
    36 
       
    37         /**
       
    38          * Need method description
       
    39          *
       
    40          * @since 1.0
       
    41          * @param
       
    42          * @return
       
    43          */
       
    44         virtual const TDesC&    XMLLang() = 0;
       
    45 
       
    46 
       
    47         /**
       
    48          * Need method description
       
    49          *
       
    50          * @since 1.0
       
    51          * @param
       
    52          * @return
       
    53          */
       
    54         virtual TInt            SetXMLLangL( const TDesC& aXMLLang ) = 0;
       
    55 
       
    56 
       
    57         /**
       
    58          * Need method description
       
    59          *
       
    60          * @since 1.0
       
    61          * @param
       
    62          * @return
       
    63          */
       
    64         virtual const TDesC&    XMLSpace() = 0;
       
    65 
       
    66 
       
    67         /**
       
    68          * Need method description
       
    69          *
       
    70          * @since 1.0
       
    71          * @param
       
    72          * @return
       
    73          */
       
    74         virtual TInt            SetXMLSpaceL( const TDesC& aXMLSpace ) = 0;
       
    75     };
       
    76 
       
    77 #endif /* _INC_MSVGLANGSPACE_ */