equal
deleted
inserted
replaced
|
1 // Copyright (c) 2004-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 // Implementation of the Header file for Class ExeTarget of the elf2e32 tool |
|
15 // @internalComponent |
|
16 // @released |
|
17 // |
|
18 // |
|
19 |
|
20 |
|
21 #ifndef EXETARGET_H |
|
22 #define EXETARGET_H |
|
23 |
|
24 #include "elffilesupplied.h" |
|
25 |
|
26 /** |
|
27 This class is derived from the base class ElfFileSupplied and is responsible for creation of |
|
28 EXE Target. |
|
29 |
|
30 @internalComponent |
|
31 @released |
|
32 */ |
|
33 class ExeTarget : public ElfFileSupplied |
|
34 { |
|
35 |
|
36 public: |
|
37 ExeTarget(ParameterListInterface* aParameterListInterface); |
|
38 virtual ~ExeTarget(); |
|
39 void ProcessExports(); |
|
40 void GenerateOutput(); |
|
41 |
|
42 bool ImageIsDll(); |
|
43 |
|
44 }; |
|
45 |
|
46 |
|
47 #endif // EXETARGET_H |
|
48 |
|
49 |