equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002-2005 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: Header file for CNSmlDMSyncApp |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef NSMLDMSYNCAPP_H |
|
20 #define NSMLDMSYNCAPP_H |
|
21 |
|
22 // INCLUDES |
|
23 #include <aknapp.h> |
|
24 #include <AknServerApp.h> |
|
25 |
|
26 const TUid KUidSmlSyncApp = { 0x101F6DE5 }; |
|
27 |
|
28 // CLASS DECLARATION |
|
29 |
|
30 /** |
|
31 * Device Management Application |
|
32 * |
|
33 */ |
|
34 NONSHARABLE_CLASS (CNSmlDMSyncApp) : public CAknApplication |
|
35 { |
|
36 public: |
|
37 /** |
|
38 * From CApaApplication, creates CNSmlDMSyncDocument document object. |
|
39 * @param None |
|
40 * @return A pointer to the created document object. |
|
41 */ |
|
42 CApaDocument* CreateDocumentL(); |
|
43 |
|
44 /** |
|
45 * From CApaApplication, returns application's UID (KUidSmlSyncApp). |
|
46 * @param None |
|
47 * @return The value of KUidSmlSyncApp. |
|
48 */ |
|
49 TUid AppDllUid() const; |
|
50 |
|
51 /** |
|
52 * From CApaApplication, Creates new application server |
|
53 * @param aAppServer App server |
|
54 * @return None |
|
55 */ |
|
56 void NewAppServerL( CApaAppServer*& aAppServer ); |
|
57 }; |
|
58 |
|
59 #endif // NSMLDMSYNCAPP_H |
|
60 |
|
61 // End of File |