|
1 /* |
|
2 * Copyright (c) 2009 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: CTvOutBehaviourImpl class implementation. |
|
15 * |
|
16 */ |
|
17 |
|
18 #include "tvoutbehaviourimpl.h" |
|
19 |
|
20 // ======== MEMBER FUNCTIONS ======== |
|
21 |
|
22 // --------------------------------------------------------------------------- |
|
23 // Symbian two phased constructor. |
|
24 // --------------------------------------------------------------------------- |
|
25 // |
|
26 CTvOutBehaviourImpl* CTvOutBehaviourImpl::NewL() |
|
27 { |
|
28 CTvOutBehaviourImpl* self = new (ELeave) CTvOutBehaviourImpl(); |
|
29 CleanupStack::Pop( self ); |
|
30 return self; |
|
31 } |
|
32 |
|
33 //--------------------------------------------------------------------------- |
|
34 // CTvOutBehaviourImpl::~CTvOutBehaviourImpl |
|
35 // |
|
36 CTvOutBehaviourImpl::~CTvOutBehaviourImpl() |
|
37 { |
|
38 } |
|
39 |
|
40 //--------------------------------------------------------------------------- |
|
41 // CTvOutBehaviourImpl::SetTvOutSettings |
|
42 // |
|
43 TInt CTvOutBehaviourImpl::SetTvOutSettings( const TTvOutSettings& /*aParams*/ ) |
|
44 { |
|
45 return KErrNotSupported; |
|
46 } |
|
47 |
|
48 //--------------------------------------------------------------------------- |
|
49 // CTvOutBehaviourImpl::DeActivateSettings |
|
50 // |
|
51 TInt CTvOutBehaviourImpl::DeActivateSettings() |
|
52 { |
|
53 return KErrNotSupported; |
|
54 } |
|
55 |
|
56 //--------------------------------------------------------------------------- |
|
57 // CTvOutBehaviourImpl::GetTvOutScreenDevices |
|
58 // |
|
59 TUint CTvOutBehaviourImpl::GetTvOutScreenDevices() |
|
60 { |
|
61 return EScreenNone; |
|
62 } |
|
63 |
|
64 //--------------------------------------------------------------------------- |
|
65 // CTvOutBehaviourImpl::GetTvOutDisplayNumber |
|
66 // |
|
67 TInt CTvOutBehaviourImpl::GetTvOutDisplayNumber() |
|
68 { |
|
69 return KErrNotSupported; |
|
70 } |
|
71 |
|
72 //--------------------------------------------------------------------------- |
|
73 // CTvOutBehaviourImpl::GetTvOutSettings |
|
74 // |
|
75 TInt CTvOutBehaviourImpl::GetTvOutSettings( TTvOutSettings& /*aParams*/ ) |
|
76 { |
|
77 return KErrNotSupported; |
|
78 } |
|
79 |
|
80 //--------------------------------------------------------------------------- |
|
81 // CTvOutBehaviourImpl::SettingsListener |
|
82 // |
|
83 TInt CTvOutBehaviourImpl::SettingsListener( TRequestStatus& /*aStatus*/ ) |
|
84 { |
|
85 return KErrNotSupported; |
|
86 } |
|
87 |
|
88 //--------------------------------------------------------------------------- |
|
89 // CTvOutBehaviourImpl::CancelSettingsListener |
|
90 // |
|
91 TBool CTvOutBehaviourImpl::CancelSettingsListener() |
|
92 { |
|
93 return EFalse; |
|
94 } |
|
95 |
|
96 //--------------------------------------------------------------------------- |
|
97 // CTvOutBehaviourImpl::GetTvOutDefaultSettings |
|
98 // |
|
99 TInt CTvOutBehaviourImpl::GetTvOutDefaultSettings( TTvOutSettings& /*aParams*/ ) |
|
100 { |
|
101 return KErrNotSupported; |
|
102 } |
|
103 |
|
104 //--------------------------------------------------------------------------- |
|
105 // CTvOutBehaviourImpl::CTvOutBehaviourImpl |
|
106 // |
|
107 CTvOutBehaviourImpl::CTvOutBehaviourImpl() |
|
108 { |
|
109 } |
|
110 |
|
111 // End of File |