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 * Checker interface class declaration |
|
16 * @internalComponent |
|
17 * @released |
|
18 * |
|
19 */ |
|
20 |
|
21 |
|
22 #ifndef VIDCHECKER_H |
|
23 #define VIDCHECKER_H |
|
24 |
|
25 #include "checker.h" |
|
26 |
|
27 /** |
|
28 Symbian Vendor Id |
|
29 |
|
30 @internalComponent |
|
31 @released |
|
32 */ |
|
33 const unsigned int KDefaultVid = 0x70000001; |
|
34 |
|
35 /** |
|
36 class VID Checker for VID validation |
|
37 |
|
38 @internalComponent |
|
39 @released |
|
40 */ |
|
41 class VidChecker : public Checker |
|
42 { |
|
43 protected: |
|
44 UnIntList iVidValList; |
|
45 |
|
46 public: |
|
47 VidChecker(CmdLineHandler* aCmdPtr, ImageReaderPtrList& aImageReaderList); |
|
48 ~VidChecker(void); |
|
49 void Check(ImgVsExeStatus& aImgVsExeStatus); |
|
50 void PrepareAndWriteData(ExeContainer* aExeContainer); |
|
51 |
|
52 private: |
|
53 void FillExeVidStatus(IdData* aIdData); |
|
54 }; |
|
55 #endif//VIDCHECKER_H |