equal
deleted
inserted
replaced
|
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: Interface class for observe audiomanager playing |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef MIMALERTMANAGEROBSERVER_H |
|
19 #define MIMALERTMANAGEROBSERVER_H |
|
20 |
|
21 // CLASS DECLARATION |
|
22 |
|
23 /** |
|
24 * Interface class for fadetext in navipane |
|
25 * |
|
26 * @lib chat.app |
|
27 * @since 2.6 |
|
28 */ |
|
29 class MIMAlertManagerObserver |
|
30 { |
|
31 public: |
|
32 |
|
33 /** |
|
34 * This method notifies when playing is completed |
|
35 */ |
|
36 virtual void PlayCompleted() = 0; |
|
37 |
|
38 protected: |
|
39 |
|
40 /** |
|
41 * Destructor |
|
42 */ |
|
43 virtual ~MIMAlertManagerObserver() {}; |
|
44 |
|
45 }; |
|
46 |
|
47 #endif // MIMALERTMANAGEROBSERVER_H |
|
48 |
|
49 //end of file |
|
50 |