equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2008-2009 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 the License "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 * DbgFlagChecker class declaration |
|
16 * @internalComponent |
|
17 * @released |
|
18 * |
|
19 */ |
|
20 |
|
21 |
|
22 #ifndef DBGFLAGCHECKER_H |
|
23 #define DBGFLAGCHECKER_H |
|
24 |
|
25 #include "checker.h" |
|
26 |
|
27 /** |
|
28 class VID Checker for VID validation |
|
29 |
|
30 @internalComponent |
|
31 @released |
|
32 */ |
|
33 class DbgFlagChecker : public Checker |
|
34 { |
|
35 protected: |
|
36 bool iUserDefinedDbgFlag; |
|
37 |
|
38 public: |
|
39 DbgFlagChecker(CmdLineHandler* aCmdPtr, ImageReaderPtrList& aImageReaderList); |
|
40 ~DbgFlagChecker(void); |
|
41 void Check(ImgVsExeStatus& aImgVsExeStatus); |
|
42 void PrepareAndWriteData(ExeContainer* aExeContainer); |
|
43 }; |
|
44 #endif//DBGFLAGCHECKER_H |