equal
deleted
inserted
replaced
1 /* |
|
2 * Copyright (c) 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: Observer for remote alerting tone change. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef MCSPREMOTEALERTINGTONEOBSERVER_H |
|
20 #define MCSPREMOTEALERTINGTONEOBSERVER_H |
|
21 |
|
22 #include <e32std.h> |
|
23 #include <rmmcustomapi.h> |
|
24 |
|
25 /** |
|
26 * Observer for remote alerting tone status changes. |
|
27 * |
|
28 * @lib CSPlugin |
|
29 * @since S60 v5.0 |
|
30 */ |
|
31 NONSHARABLE_CLASS( MCSPRemoteAlertingToneObserver ) |
|
32 { |
|
33 |
|
34 public: |
|
35 |
|
36 /** |
|
37 * Notification of remote alerting tone status change. |
|
38 * |
|
39 * @since S60 v5.0 |
|
40 * @param aNewStatus New remote alerting tone status. |
|
41 */ |
|
42 virtual void RemoteAlertingToneStatusChanged( |
|
43 RMmCustomAPI::TRemoteAlertingToneStatus aNewStatus ) = 0; |
|
44 |
|
45 }; |
|
46 |
|
47 |
|
48 #endif // MCSPREMOTEALERTINGTONEOBSERVER_H |
|