equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 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: SmilPlayerPauseObserver declaration |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef SMILPLAYERPAUSEOBSERVER_H |
|
21 #define SMILPLAYERPAUSEOBSERVER_H |
|
22 |
|
23 // INCLUDES |
|
24 |
|
25 // CONSTANTS |
|
26 |
|
27 // FORWARD DECLARATIONS |
|
28 |
|
29 // DATA TYPES |
|
30 |
|
31 // CLASS DECLARATION |
|
32 |
|
33 /** |
|
34 * This interface class is implemented by pause indicator timer observer. |
|
35 * |
|
36 * @lib smilplayer.lib |
|
37 * @since 3.0 |
|
38 */ |
|
39 NONSHARABLE_CLASS(MSmilPlayerPauseObserver) |
|
40 { |
|
41 public: |
|
42 |
|
43 /** |
|
44 * Called by timer when pause indicator should be toggled. |
|
45 * |
|
46 * @since 3.0 |
|
47 */ |
|
48 virtual void TogglePauseIndicator() const = 0; |
|
49 }; |
|
50 |
|
51 |
|
52 #endif // SMILPLAYERPAUSEOBSERVER_H |
|
53 |
|
54 // End of File |