1 /* |
|
2 * Copyright (c) 2003-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: This file implements the needed functions defined in |
|
15 tvoutconfig.h part of TVOutConfig Dummy Implementation. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 //- Include Files ---------------------------------------------------------- |
|
21 |
|
22 #include "tvoutconfig.h" |
|
23 #include "tvoutconfigimp.h" |
|
24 |
|
25 //- External Data ----------------------------------------------------------- |
|
26 |
|
27 //- External Function Prototypes -------------------------------------------- |
|
28 |
|
29 //- Constants --------------------------------------------------------------- |
|
30 |
|
31 //- Macros ------------------------------------------------------------------ |
|
32 |
|
33 //- Global and Local Variables ---------------------------------------------- |
|
34 |
|
35 //- Local Function Prototypes ----------------------------------------------- |
|
36 |
|
37 //- Local Functions --------------------------------------------------------- |
|
38 |
|
39 //- Member Functions -------------------------------------------------------- |
|
40 |
|
41 //============================================================================= |
|
42 |
|
43 //--------------------------------------------------------------------------- |
|
44 /** |
|
45 @see TvOutConfig.h |
|
46 */ |
|
47 //--------------------------------------------------------------------------- |
|
48 /** |
|
49 @see TvOutConfig.h |
|
50 */ |
|
51 EXPORT_C CTvOutConfig* CTvOutConfig::NewL() |
|
52 { |
|
53 |
|
54 CTvOutConfigImp* result = new ( ELeave ) CTvOutConfigImp; |
|
55 |
|
56 CleanupStack::PushL( result ); |
|
57 result->ConstructL(); |
|
58 CleanupStack::Pop(); |
|
59 |
|
60 return result; |
|
61 |
|
62 } |
|
63 |
|
64 // End of File |
|
65 |
|