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 * It describes the CDosSaeExample class |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef __DSYSAE_H__ |
|
21 #define __DSYSAE_H__ |
|
22 |
|
23 #include "DosSaeBase.h" |
|
24 |
|
25 //Class for the SAE Service |
|
26 |
|
27 /** |
|
28 * Plug-in class that implements the MDosSaeBaseDSY class and |
|
29 * satisfies the RDosSae requests from the clients. |
|
30 */ |
|
31 class CDosSaeExample : public CDosSaeBase |
|
32 { |
|
33 public: |
|
34 /** |
|
35 * NewL function that creates the object. |
|
36 * @return The newly created object. |
|
37 */ |
|
38 static CDosSaeExample* NewL(); |
|
39 |
|
40 //====================================================== |
|
41 // See MDosSaeBaseDSY class for a description of |
|
42 // the following function. |
|
43 //====================================================== |
|
44 TInt StartSaeL(); |
|
45 |
|
46 private: |
|
47 /** |
|
48 * Symbian two-phased constructor. |
|
49 */ |
|
50 void ConstructL(); |
|
51 }; |
|
52 |
|
53 |
|
54 #endif //__DSYSAE_H__ |