equal
deleted
inserted
replaced
|
1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of the License "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // Target application to be debugged by t_rmdebug2.exe when testing |
|
15 // security restrictions. This application is built with various |
|
16 // capabilities by the t_rmdebug_securityX.mmp files. This allows |
|
17 // the t_rmdebug2 program to ensure that security restrictions are |
|
18 // properly enforced by the DSS/DDD subsystem. |
|
19 // |
|
20 // |
|
21 |
|
22 /** |
|
23 @file |
|
24 @internalTechnology |
|
25 @released |
|
26 */ |
|
27 |
|
28 #ifndef T_RMDEBUG_SECURITY_H |
|
29 #define T_RMDEBUG_SECURITY_H |
|
30 |
|
31 class CRunModeApp : public CBase |
|
32 { |
|
33 public: |
|
34 static CRunModeApp* NewL(); |
|
35 ~CRunModeApp(); |
|
36 |
|
37 void TestWaitDebug(); |
|
38 |
|
39 private: |
|
40 CRunModeApp(); |
|
41 void ConstructL(); |
|
42 }; |
|
43 |
|
44 #endif // T_RMDEBUG_SECURITY_H |