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