equal
deleted
inserted
replaced
|
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 // TVtEngRenderingOptions::TVtEngRenderingOptions |
|
24 // C++ constructor |
|
25 // ----------------------------------------------------------------------------- |
|
26 // |
|
27 inline TVtEngRenderingOptions::TVtEngRenderingOptions( |
|
28 MVtEngFrameObserver& aObserver, |
|
29 TSize aSize ) : |
|
30 iObserver( &aObserver ), |
|
31 iSize( aSize) |
|
32 { |
|
33 } |
|
34 |
|
35 // ----------------------------------------------------------------------------- |
|
36 // TVtEngRenderingOptions::TVtEngRenderingOptions |
|
37 // C++ copy constructor |
|
38 // ----------------------------------------------------------------------------- |
|
39 // |
|
40 inline TVtEngRenderingOptions::TVtEngRenderingOptions( |
|
41 const TVtEngRenderingOptions& aOptions ) : |
|
42 iObserver( aOptions.iObserver ), |
|
43 iSize( aOptions.iSize ) |
|
44 { |
|
45 } |
|
46 |
|
47 // End of File |