equal
deleted
inserted
replaced
|
1 /** |
|
2 * Copyright (c) 2004-2009 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 * Main entry point in the process. |
|
16 * |
|
17 * |
|
18 */ |
|
19 |
|
20 |
|
21 |
|
22 /** |
|
23 @file |
|
24 */ |
|
25 |
|
26 #ifndef __SBMAIN_H__ |
|
27 #define __SBMAIN_H__ |
|
28 |
|
29 #include <e32base.h> |
|
30 |
|
31 |
|
32 /** @mainpage Secure Backup Documentation |
|
33 |
|
34 This is the documentation for Secure Backup. |
|
35 |
|
36 |
|
37 @section UsingDoc How to use this documentation |
|
38 |
|
39 The documentation can be split into three logical groups and they are as follows: |
|
40 |
|
41 |
|
42 @par Secure Backup Modules |
|
43 |
|
44 @li @ref SBEServer This is the Secure Backup Engine module documentation |
|
45 |
|
46 @li @ref ABServer This is Active Backup module documentation |
|
47 |
|
48 */ |
|
49 |
|
50 |
|
51 /** |
|
52 @namespace conn |
|
53 |
|
54 This namespace is the global Symbian Connect namespace which encapsulates |
|
55 all of the connectivity components within Symbian OS. |
|
56 */ |
|
57 |
|
58 namespace conn |
|
59 { |
|
60 |
|
61 class CSBActiveScheduler : public CActiveScheduler |
|
62 /** |
|
63 @internalComponent |
|
64 |
|
65 The active scheduler for secure backup. |
|
66 */ |
|
67 { |
|
68 public: |
|
69 /** C++ Constructor */ |
|
70 CSBActiveScheduler() : CActiveScheduler() { } |
|
71 void Error(TInt aError) const; |
|
72 }; |
|
73 } |
|
74 |
|
75 |
|
76 #endif //__SBMAIN_H__ |