debugsrv/runmodedebug/tsrc/rm_debug/debug_targets/t_rmdebug_security.h
changeset 56 aa2539c91954
equal deleted inserted replaced
54:a151135b0cf9 56:aa2539c91954
       
     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 "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 #ifndef T_RMDEBUG_SECURITY_H
       
    24 #define T_RMDEBUG_SECURITY_H
       
    25 
       
    26 class CRunModeApp : public CBase
       
    27 {
       
    28 public:
       
    29 	static CRunModeApp* NewL();
       
    30 	~CRunModeApp();
       
    31 
       
    32 	void TestWaitDebug();
       
    33 
       
    34 private:
       
    35 	CRunModeApp();
       
    36 	void ConstructL();
       
    37 };
       
    38 
       
    39 #endif // T_RMDEBUG_SECURITY_H