equal
deleted
inserted
replaced
1 /* |
|
2 * Copyright (c) 2007 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: Defines abstract API for burst mode observers* |
|
15 */ |
|
16 |
|
17 |
|
18 #ifndef CAMBURSTMODEOBSERVER_H |
|
19 #define CAMBURSTMODEOBSERVER_H |
|
20 |
|
21 |
|
22 // FORWARD DECLARATIONS |
|
23 |
|
24 // CLASS DECLARATION |
|
25 |
|
26 /** |
|
27 * Abstract API for burst mode observer. |
|
28 * Derived classes may register as a burst mode observer to get |
|
29 * related notifications from CCamAppUiBase |
|
30 * |
|
31 * @since 2.8 |
|
32 */ |
|
33 class MCamBurstModeObserver |
|
34 { |
|
35 public: |
|
36 /** |
|
37 * Burst mode activation has changed |
|
38 * @since 2.8 |
|
39 * @param aActive whether or not burst mode is active |
|
40 * @param aStillModeActive whether or not still capture is active |
|
41 */ |
|
42 virtual void BurstModeActiveL( TBool aActive, TBool aStillModeActive ) = 0; |
|
43 }; |
|
44 |
|
45 #endif // CAMBURSTMODEOBSERVER_H |
|
46 |
|
47 // End of File |
|