vtengines/videoteleng/Inc/Media/TVtEngRenderingDSA.inl
changeset 0 ed9695c8bcbe
equal deleted inserted replaced
-1:000000000000 0:ed9695c8bcbe
       
     1 /*
       
     2 * Copyright (c) 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:  Local and remote video rendering configuration.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 // ============================ MEMBER FUNCTIONS ===============================
       
    21 
       
    22 // -----------------------------------------------------------------------------
       
    23 // TVtEngRenderingOptionsDSA::TVtEngRenderingOptionsDSA
       
    24 // C++ constructor
       
    25 // -----------------------------------------------------------------------------
       
    26 //
       
    27 inline TVtEngRenderingOptionsDSA::TVtEngRenderingOptionsDSA(
       
    28     MVtEngFrameObserver& aObserver,
       
    29     RWsSession& aWs,
       
    30     CWsScreenDevice& aScreenDevice,
       
    31     RWindowBase& aWindow,
       
    32     const TRect& aScreenRect,
       
    33     const TRect& aClipRect ) :
       
    34     iWs( aWs ),
       
    35     iWsSD( aScreenDevice ),
       
    36     iWindow( aWindow ),
       
    37     iRect( aScreenRect ),
       
    38     iClipRect( aClipRect ),
       
    39     iObserver( &aObserver )
       
    40     {
       
    41     }
       
    42 
       
    43 // -----------------------------------------------------------------------------
       
    44 // TVtEngRenderingOptionsDSA::TVtEngRenderingOptionsDSA
       
    45 // C++ copy constructor
       
    46 // -----------------------------------------------------------------------------
       
    47 //
       
    48 inline TVtEngRenderingOptionsDSA::TVtEngRenderingOptionsDSA(
       
    49     const TVtEngRenderingOptionsDSA& aOptions )
       
    50     : iWs( aOptions.iWs ),
       
    51       iWsSD( aOptions.iWsSD ),
       
    52       iWindow( aOptions.iWindow ),
       
    53       iRect( aOptions.iRect ),
       
    54       iClipRect( aOptions.iClipRect ),
       
    55       iObserver( aOptions.iObserver )
       
    56     {
       
    57     }
       
    58 
       
    59 // End of File