equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002 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 * Object factory for Logs. Instantiates Aoc related objects. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef __CLogsAocObjFactory_H |
|
21 #define __CLogsAocObjFactory_H |
|
22 |
|
23 // INCLUDE FILES |
|
24 #include <e32base.h> |
|
25 |
|
26 // CONSTANTS |
|
27 |
|
28 // FORWARD DECLARATIONS |
|
29 |
|
30 class MLogsAocUtil; |
|
31 class MLogsCallStatus; |
|
32 |
|
33 // CLASS DECLARATIONS |
|
34 |
|
35 class CLogsAocObjFactory: public CBase |
|
36 { |
|
37 public: |
|
38 |
|
39 /** |
|
40 * Instantiate MAocUtil object |
|
41 * |
|
42 * @return MAocUtil object |
|
43 */ |
|
44 static IMPORT_C MLogsAocUtil* AocUtilL(); |
|
45 |
|
46 /** |
|
47 * Instantiate MCallStatus object |
|
48 * |
|
49 * @return MCallStatus object |
|
50 */ |
|
51 static IMPORT_C MLogsCallStatus* CallStatusLC(); |
|
52 |
|
53 }; |
|
54 |
|
55 #endif // __CLogsAocObjFactory_H |
|
56 |
|
57 // End of file |