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