vtengines/videoteleng/Inc/Media/TVtEngRenderingNGA.h
changeset 27 dcbddbbaf8fd
equal deleted inserted replaced
18:d9b6a8729acd 27:dcbddbbaf8fd
       
     1 /*
       
     2 * Copyright (c) 2004-2006 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:  Class for NGA Rendering.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef TVTENGRENDERINGNGA_H
       
    19 #define TVTENGRENDERINGNGA_H
       
    20 
       
    21 //  INCLUDES
       
    22 #include <e32std.h>
       
    23 
       
    24 // FORWARD DECLARATIONS
       
    25 
       
    26 class MVtEngFrameObserver;
       
    27 class RWindow;
       
    28 class RWsSession;
       
    29 // CLASS DECLARATION
       
    30 
       
    31 /**
       
    32 *  Direct screen access rendering definitions.
       
    33 *
       
    34 *  @lib videoteleng
       
    35 *  @since 2.6
       
    36 */
       
    37 NONSHARABLE_CLASS( TVtEngRenderingOptionsNGA )
       
    38     {
       
    39     public: // constructor
       
    40 
       
    41         /**
       
    42         * C++ constructor
       
    43         */
       
    44         inline TVtEngRenderingOptionsNGA(
       
    45             RWindow& aWindow, RWsSession& aWs );
       
    46 
       
    47         /**
       
    48         * C++ copy constructor.
       
    49         * @param aOptions options to be copied to this instance.
       
    50         */
       
    51         inline TVtEngRenderingOptionsNGA(
       
    52             const TVtEngRenderingOptionsNGA& aOptions );
       
    53 
       
    54     private:
       
    55         TVtEngRenderingOptionsNGA& operator=(
       
    56             const TVtEngRenderingOptionsNGA& );
       
    57 
       
    58     public: // data members
       
    59         RWindow&    iWindow;
       
    60         
       
    61         RWsSession&      iWs;
       
    62     };
       
    63 
       
    64 #include <tvtengrenderingnga.inl>
       
    65 
       
    66 #endif      // TVTENGRENDERINGNGA_H
       
    67 
       
    68 // End of File