equal
deleted
inserted
replaced
1 /* |
|
2 * Copyright (c) 2003 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: This file contains the header file of the MPEActiveStarter class. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef MPEACTIVESTARTER_H |
|
21 #define MPEACTIVESTARTER_H |
|
22 |
|
23 //INCLUDES |
|
24 |
|
25 // CLASS DECLARATION |
|
26 |
|
27 /** |
|
28 * Virtual interface for a protocol specific active starter of Phone Engine. |
|
29 * |
|
30 * @lib PhoneEngineBase.lib |
|
31 * @since Series60_2.7 |
|
32 */ |
|
33 NONSHARABLE_CLASS( MPEActiveStarter ) |
|
34 { |
|
35 public: |
|
36 |
|
37 /** |
|
38 * Recalls starting of modules after leave occured in the middle of StepL sequence. |
|
39 * @since Series60_2.7 |
|
40 */ |
|
41 virtual void RecallSteps( ) = 0; |
|
42 |
|
43 /** |
|
44 * Calls a protocol specific step method, which starts modules of PhoneEngine. |
|
45 * @since Series60_2.7 |
|
46 * @return EFalse when starting sequence completed. |
|
47 */ |
|
48 virtual TBool StepL( ) = 0; |
|
49 |
|
50 }; |
|
51 |
|
52 #endif // MPEACTIVESTARTER_H |
|
53 |
|
54 //End of file |
|