svgtviewer/SvgtViewerPlugin/SVGCodecInc/SVGProxy.h
branchRCL_3
changeset 13 e52958d06c29
parent 10 1882882c7f9c
child 14 20b99a6d6175
equal deleted inserted replaced
10:1882882c7f9c 13:e52958d06c29
     1 /*
       
     2 * Copyright (c) 2005 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:  SVGT proxy for resolving plugin.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef SVGDECODECONSTRUCT_H
       
    20 #define SVGDECODECONSTRUCT_H
       
    21 
       
    22 #include <imageconstruct.h>
       
    23 
       
    24 class CSvgDecodeConstruct : public CImageDecodeConstruct
       
    25     {
       
    26 public:
       
    27     /**
       
    28     * Static constructor. Creates and returns a pointer to CSvgDecodeConstruct 
       
    29     * @since 3.1
       
    30     * @return Pointer to the decode construct instance.
       
    31     */
       
    32     
       
    33     static CSvgDecodeConstruct* NewL();
       
    34 
       
    35     // From CImageDecodeConstruct
       
    36     /**
       
    37 	* Creates a new concrete CImageDecoderPlugin object.
       
    38 	* This is a pure virtual function that each derived class must implement.
       
    39 	* @return A pointer to a fully constructed CImageDecoderPlugin.
       
    40 	*/
       
    41 	
       
    42     CImageDecoderPlugin* NewPluginL() const;
       
    43     };
       
    44 
       
    45 #endif //SVGDECODECONSTRUCT_H