|
1 /* |
|
2 * Copyright (c) 2002-2004 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: Implementation of the CProEngToneHandler. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 // INCLUDE FILES |
|
21 #include "CProEngToneHandler.h" |
|
22 |
|
23 // ============================ MEMBER FUNCTIONS =============================== |
|
24 |
|
25 // ----------------------------------------------------------------------------- |
|
26 // CProEngToneHandler::DrmConstructL |
|
27 // 2nd phase construct for DRM objects. Empty implementation. |
|
28 // ----------------------------------------------------------------------------- |
|
29 // |
|
30 void CProEngToneHandler::DrmConstructL() |
|
31 { |
|
32 } |
|
33 |
|
34 // ----------------------------------------------------------------------------- |
|
35 // CProEngToneHandler::ReleaseDrm |
|
36 // Destructor for DRM objects. Empty implementation. |
|
37 // ----------------------------------------------------------------------------- |
|
38 // |
|
39 void CProEngToneHandler::ReleaseDrm() |
|
40 { |
|
41 } |
|
42 |
|
43 // ----------------------------------------------------------------------------- |
|
44 // CProEngToneHandler::CheckProtectedFileL |
|
45 // Empty implementation. |
|
46 // ----------------------------------------------------------------------------- |
|
47 // |
|
48 TInt CProEngToneHandler::CheckProtectedFileL( const TDesC& /*aFileName*/ ) |
|
49 { |
|
50 return KErrNone; |
|
51 } |
|
52 |
|
53 // ----------------------------------------------------------------------------- |
|
54 // CProEngToneHandler::CanSetAutomated |
|
55 // Empty implementation. |
|
56 // ----------------------------------------------------------------------------- |
|
57 // |
|
58 TBool CProEngToneHandler::CanSetAutomated( const TDesC& /*aFileName*/ ) |
|
59 { |
|
60 return EFalse; |
|
61 } |
|
62 |
|
63 // ----------------------------------------------------------------------------- |
|
64 // CProEngToneHandler::AskAutomated |
|
65 // Empty implementation. |
|
66 // ----------------------------------------------------------------------------- |
|
67 // |
|
68 TInt CProEngToneHandler::AskAutomated( const TDesC& /*aFileName*/ ) |
|
69 { |
|
70 return KErrNone; |
|
71 } |
|
72 |
|
73 // ----------------------------------------------------------------------------- |
|
74 // CProEngToneHandler::SetAutomated |
|
75 // Empty implementation. |
|
76 // ----------------------------------------------------------------------------- |
|
77 // |
|
78 TInt CProEngToneHandler::SetAutomated( TProfileSettingId /* aSettingId */, |
|
79 const TDesC& /*aFileName*/ ) |
|
80 { |
|
81 } |
|
82 |
|
83 // ----------------------------------------------------------------------------- |
|
84 // CProEngToneHandler::RemoveAutomated |
|
85 // Empty implementation. |
|
86 // ----------------------------------------------------------------------------- |
|
87 // |
|
88 void CProEngToneHandler::RemoveAutomated( const TDesC& /*aFileName*/ ) |
|
89 { |
|
90 } |
|
91 |
|
92 // ----------------------------------------------------------------------------- |
|
93 // CProEngToneHandler::IsProtected |
|
94 // Empty implementation. |
|
95 // ----------------------------------------------------------------------------- |
|
96 // |
|
97 TBool CProEngToneHandler::IsProtected( const TDesC& /*aFileName*/ ) const |
|
98 { |
|
99 return EFalse; |
|
100 } |
|
101 |
|
102 // End of File |