equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2007-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: CSC Application |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef C_CSCAPPLICATION_H |
|
21 #define C_CSCAPPLICATION_H |
|
22 |
|
23 /** |
|
24 * An instance of CCSCApplication |
|
25 * The application part of AVKON application framework for CSC application |
|
26 * |
|
27 * @lib |
|
28 * @since S60 v3.2 |
|
29 */ |
|
30 NONSHARABLE_CLASS( CCSCApplication ) : public CAknApplication |
|
31 { |
|
32 public: |
|
33 |
|
34 // from base class CAknApplication |
|
35 |
|
36 /** |
|
37 * From CAknApplication |
|
38 * Return the application DLL UID value |
|
39 * |
|
40 * @since S60 v3.0 |
|
41 * @return the UID of this Application/Dll |
|
42 */ |
|
43 TUid AppDllUid() const; |
|
44 |
|
45 protected: |
|
46 |
|
47 // from base class CAknApplication |
|
48 |
|
49 /** |
|
50 * From CAknApplication |
|
51 * Create a CApaDocument object and return a pointer to it |
|
52 * |
|
53 * @since S60 v3.0 |
|
54 * @return a pointer to the created document |
|
55 */ |
|
56 CApaDocument* CreateDocumentL(); |
|
57 |
|
58 #ifdef _DEBUG |
|
59 friend class UT_CSC; |
|
60 #endif |
|
61 |
|
62 }; |
|
63 |
|
64 #endif // C_CSCAPPLICATION_H |
|
65 |