svgtopt/SVG/SVGImpl/inc/SVGStrCssValueImpl.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_CSTRCSSVALUEIMPL__
       
    20 #define __INC_CSTRCSSVALUEIMPL__
       
    21 
       
    22 
       
    23 #include "SVGCssValue.h"
       
    24 
       
    25 
       
    26 
       
    27 /**
       
    28  * Class description goes here.
       
    29  *
       
    30  *  @lib SVGEngine.lib
       
    31  *  @since 1.0
       
    32  */
       
    33 
       
    34 
       
    35 class CStrCssValueImpl : public CCssValue
       
    36 
       
    37     {
       
    38     public:
       
    39 
       
    40         /**
       
    41          * Need method description
       
    42          *
       
    43          * @since 1.0
       
    44          * @param
       
    45          * @return
       
    46          */
       
    47                                     ~CStrCssValueImpl();
       
    48 
       
    49 
       
    50 
       
    51 
       
    52         /**
       
    53          * Need method description
       
    54          *
       
    55          * @since 1.0
       
    56          * @param
       
    57          * @return
       
    58          */
       
    59         TInt                   SetValueL( const TDesC& aValue );
       
    60 
       
    61         /**
       
    62          * Need method description
       
    63          *
       
    64          * @since 1.0
       
    65          * @param
       
    66          * @return
       
    67          */
       
    68          const TDesC&                Value();
       
    69     /**
       
    70          * Need method description
       
    71          *
       
    72          * @since 1.0
       
    73          * @param
       
    74          * @return
       
    75          */
       
    76 		void 					SetL(CStrCssValueImpl* aValue);
       
    77 
       
    78     /**
       
    79          * Need method description
       
    80          *
       
    81          * @since 1.0
       
    82          * @param
       
    83          * @return
       
    84          */
       
    85                                     CStrCssValueImpl();
       
    86 		
       
    87 		
       
    88 		TBool						IsEqual(CCssValue* aValue);
       
    89 	
       
    90 		void						Print();
       
    91 			
       
    92     private:
       
    93 
       
    94 
       
    95 
       
    96 
       
    97 
       
    98             HBufC*                  iCssText;
       
    99 
       
   100 
       
   101     };
       
   102 
       
   103 #endif /* __INC_CSTRCSSVALUEIMPL__ */