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 "Symbian Foundation License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 #include "csecureprocessasbase.h" |
|
17 |
|
18 /** Panic the secure process |
|
19 |
|
20 @param aPanic A reference to TSecureProcessASBasePanic object |
|
21 @see TSecureProcessASBasePanic |
|
22 @internalTechnology |
|
23 @released |
|
24 */ |
|
25 void CSecureProcessASBase::Panic(const TSecureProcessASBasePanic aPanic) |
|
26 { |
|
27 _LIT(KSecureProcessAsBase, "CSecureProcessASBase"); |
|
28 User::Panic(KSecureProcessAsBase, aPanic); |
|
29 } |
|
30 |