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 "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 StdExeTarget of the elf2e32 tool |
|
15 // @internalComponent |
|
16 // @released |
|
17 // |
|
18 // |
|
19 |
|
20 |
|
21 #ifndef STDEXE_TARGET_H |
|
22 #define STDEXE_TARGET_H |
|
23 |
|
24 #include "export_type_fb_target.h" |
|
25 |
|
26 /** |
|
27 This class is derived from the base class ExportTypeFBTarget and is responsible for |
|
28 creation of STDEXE Target. |
|
29 |
|
30 @internalComponent |
|
31 @released |
|
32 */ |
|
33 class StdExeTarget : public ExportTypeFBTarget |
|
34 { |
|
35 |
|
36 public: |
|
37 StdExeTarget(ParameterListInterface* aParameterListInterface); |
|
38 virtual ~StdExeTarget(); |
|
39 bool ImageIsDll(); |
|
40 bool AllowDllData(); |
|
41 void GenerateOutput(); |
|
42 bool WarnForNewExports(); |
|
43 }; |
|
44 |
|
45 |
|
46 |
|
47 #endif // STDEXE_TARGET_H |
|
48 |
|
49 |