toolsandutils/e32tools/elf2e32/source/exexp_fb_target.h
changeset 0 83f4b4db085c
child 1 d4b442d23379
equal deleted inserted replaced
-1:000000000000 0:83f4b4db085c
       
     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 Exexp_FB_Target of the elf2e32 tool
       
    15 // @internalComponent
       
    16 // @released
       
    17 // 
       
    18 //
       
    19 
       
    20 
       
    21 #ifndef EXEXP_FB_TARGET_H
       
    22 #define EXEXP_FB_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 EXEXP Target.
       
    29 
       
    30 @internalComponent
       
    31 @released
       
    32 */
       
    33 class ExexpFBTarget : public ExportTypeFBTarget
       
    34 {
       
    35 
       
    36 public:
       
    37 	ExexpFBTarget(ParameterListInterface* aParameterListInterface);
       
    38 	virtual ~ExexpFBTarget();
       
    39 	bool ImageIsDll();
       
    40 	bool AllowDllData();
       
    41 
       
    42 };
       
    43 
       
    44 
       
    45 
       
    46 #endif // EXEXP_FB_TARGET_H
       
    47 
       
    48