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 // polydllfb_target.h |
|
15 // Declaration of Class POLYDLLFBTarget of the elf2e32 tool |
|
16 // @internalComponent |
|
17 // @released |
|
18 // |
|
19 // |
|
20 |
|
21 #ifndef POLYDLLFB_TARGET_H |
|
22 #define POLYDLLFB_TARGET_H |
|
23 |
|
24 #include "export_type_fb_target.h" |
|
25 #include <list> |
|
26 |
|
27 class Symbol; |
|
28 |
|
29 typedef std::list<Symbol*> SymbolList; |
|
30 |
|
31 /** |
|
32 This class is derived from the class ExportTypeFBTarget and is responsible for creation of |
|
33 PolyDll first build. |
|
34 |
|
35 @internalComponent |
|
36 @released |
|
37 */ |
|
38 class POLYDLLFBTarget : public ExportTypeFBTarget |
|
39 { |
|
40 |
|
41 public: |
|
42 POLYDLLFBTarget(ParameterListInterface* aParameterListInterface); |
|
43 ~POLYDLLFBTarget(); |
|
44 void ProcessExports(); |
|
45 void GenerateOutput(); |
|
46 |
|
47 }; |
|
48 |
|
49 |
|
50 #endif // POLYDLLFB_TARGET_H |
|
51 |
|
52 |
|