debugsrv/runmodedebug/rmdebug_test/rm_debug/debug_targets/t_rmdebug_security.h
branchRCL_3
changeset 20 ca8a1b6995f6
equal deleted inserted replaced
19:07b41fa8d1dd 20:ca8a1b6995f6
       
     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