svgtopt/nvgdecoder/inc/TLVIconRenderer.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:  NVG Decoder header file
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef _TLVICONRENDERER_H_
       
    20 #define _TLVICONRENDERER_H_
       
    21 
       
    22 #include "TLVRenderer.h"
       
    23 
       
    24 class CTLVIconRenderer : public CTLVRenderer
       
    25     {
       
    26 public:
       
    27     static CTLVIconRenderer * NewL(const TDesC8& aBuf, TInt aWidth, TInt aHeight);
       
    28  
       
    29     static CTLVIconRenderer * NewLC(const TDesC8& aBuf, TInt aWidth, TInt aHeight);
       
    30     
       
    31     virtual ~CTLVIconRenderer();
       
    32 
       
    33 protected:
       
    34     TInt DrawPathL();
       
    35     virtual TInt ExecuteL(TInt index);
       
    36 
       
    37 private:
       
    38     CTLVIconRenderer(TInt aWidth, TInt aHeight);
       
    39     };
       
    40 
       
    41 #endif
       
    42 //--------------------------------EndOfFile------------------------------------