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 DLL First build Target Type |
|
15 // @internalComponent |
|
16 // @released |
|
17 // |
|
18 // |
|
19 |
|
20 #ifndef DLLFB_TARGET_H |
|
21 #define DLLFB_TARGET_H |
|
22 |
|
23 #include "export_type_fb_target.h" |
|
24 |
|
25 /** |
|
26 This class is derived from the base class ExportTypeFBTarget and is responsible for creation of |
|
27 DLL Target.It passes the input ELF file to the ELFfile Handler to get the Symbol list |
|
28 and then passes the Symbol List to the DSOHandler to generate the DSO file and then the E32 image. |
|
29 |
|
30 @internalComponent |
|
31 @released |
|
32 */ |
|
33 class DLLFBTarget : public ExportTypeFBTarget |
|
34 { |
|
35 |
|
36 public: |
|
37 DLLFBTarget(ParameterListInterface* aParameterListInterface); |
|
38 ~DLLFBTarget(); |
|
39 }; |
|
40 |
|
41 |
|
42 #endif // DLLFB_TARGET_H |
|