equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002-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: Skin server's active scheduler. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef C_AKNSSRVSCHEDULER_H |
|
20 #define C_AKNSSRVSCHEDULER_H |
|
21 |
|
22 // INCLUDES |
|
23 #include <e32base.h> |
|
24 |
|
25 // CLASS DECLARATION |
|
26 |
|
27 /** |
|
28 * Active scheduler for Skin server. |
|
29 */ |
|
30 NONSHARABLE_CLASS(CAknsSrvScheduler) : public CActiveScheduler |
|
31 { |
|
32 public: // Constructors and destructor |
|
33 |
|
34 /** |
|
35 * Constructor. |
|
36 */ |
|
37 CAknsSrvScheduler(); |
|
38 |
|
39 /** |
|
40 * Destructor. |
|
41 */ |
|
42 virtual ~CAknsSrvScheduler(); |
|
43 |
|
44 public: // Functions from base classes |
|
45 |
|
46 /** |
|
47 * Called if active object's RunL() leaves. |
|
48 */ |
|
49 void Error( TInt aLeaveCode ) const; |
|
50 |
|
51 }; |
|
52 |
|
53 #endif // C_AKNSSRVSCHEDULER_H |
|
54 |
|
55 // End of File |