svgtopt/VGRenderer/HWVG/inc/HWOpenVGRendererImpl.h
changeset 46 88edb906c587
equal deleted inserted replaced
-1:000000000000 46:88edb906c587
       
     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:  CHWOpenVGRendererImpl header file
       
    15  *
       
    16 */
       
    17 
       
    18 #ifndef HWOPENVGRENDERERIMPL_H_
       
    19 #define HWOPENVGRENDERERIMPL_H_
       
    20 
       
    21 #include "HWVG.h"
       
    22 #include "OpenVGRenderer.h"
       
    23 
       
    24 class CHWOpenVGRendererImpl : public COpenVGRenderer
       
    25     {
       
    26     static const TUint KMAJOR_VERSION;
       
    27     static const TUint KMINOR_VERSION;
       
    28     static const TUint KBUILD_VERSION;
       
    29 public:
       
    30     static CHWOpenVGRendererImpl* NewL();
       
    31     static CHWOpenVGRendererImpl* NewLC();
       
    32     ~CHWOpenVGRendererImpl();
       
    33     
       
    34 public:
       
    35     TVersion Version() const;
       
    36     
       
    37     virtual TVersion GetVersion() const;
       
    38     virtual const TDesC GetName() const;
       
    39 
       
    40 public:
       
    41     
       
    42     virtual void ToggleReset();
       
    43     
       
    44     virtual MVGSurfaceImpl* CreateVGSurfaceL(TInt aOption);
       
    45     
       
    46 private:
       
    47     CHWOpenVGRendererImpl();
       
    48     void ConstructL();
       
    49     };
       
    50 
       
    51 #endif /*HWOPENVGRENDERERIMPL_H_*/