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: |
|
15 * Event enumerations and uid:s of System Agent. Sysagent clients |
|
16 * can include this file and listen to these events. These events will be routed |
|
17 * through System Agent. |
|
18 * |
|
19 */ |
|
20 |
|
21 |
|
22 #ifndef SAE_H |
|
23 #define SAE_H |
|
24 |
|
25 // INCLUDES |
|
26 #include <e32base.h> |
|
27 |
|
28 // FORWARD DECLARATIONS |
|
29 class CSaePubSubNotifier; |
|
30 |
|
31 // CLASS DECLARATION |
|
32 |
|
33 /** |
|
34 * Creates and owns the SAE environment. |
|
35 */ |
|
36 NONSHARABLE_CLASS( CSae ): public CBase |
|
37 { |
|
38 public: |
|
39 |
|
40 /** |
|
41 * Two-phased constructor. |
|
42 */ |
|
43 static CSae* NewL(); |
|
44 |
|
45 /** |
|
46 * Destructor |
|
47 */ |
|
48 virtual ~CSae(); |
|
49 |
|
50 private: |
|
51 |
|
52 /** |
|
53 * By default EPOC constructor is private. |
|
54 */ |
|
55 void ConstructL(); |
|
56 |
|
57 /** |
|
58 * C++ default constructor. |
|
59 */ |
|
60 CSae(); |
|
61 |
|
62 private: // Data |
|
63 |
|
64 CSaePubSubNotifier* iPubSubNotifier; |
|
65 }; |
|
66 |
|
67 #endif // SAE_H |
|
68 |
|
69 // End of File |
|
70 |