toolsandutils/e32tools/elf2e32/source/dll_rebuild_target.h
branchGCC_SURGE
changeset 56 626366955efb
parent 55 59148e28d9f6
child 57 e69da8462916
equal deleted inserted replaced
55:59148e28d9f6 56:626366955efb
     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 Rebuild Target Type
       
    15 // @internalComponent
       
    16 // @released
       
    17 // 
       
    18 //
       
    19 
       
    20 #ifndef DLL_REBUILD_TARGET_H
       
    21 #define DLL_REBUILD_TARGET_H
       
    22 
       
    23 #include "export_type_rebuild_target.h"
       
    24 
       
    25 /**
       
    26 This class is derived from the base class ExportTypeRebuildTarget and is responsible for creation of
       
    27 DLL Target.
       
    28 
       
    29 @internalComponent
       
    30 @released
       
    31 */
       
    32 
       
    33 class DLLRebuildTarget : public ExportTypeRebuildTarget
       
    34 {
       
    35 
       
    36 public:
       
    37 	DLLRebuildTarget(ParameterListInterface* aParameterListInterface);
       
    38 	~DLLRebuildTarget();	
       
    39 };
       
    40 
       
    41 #endif // DLL_REBUILD_TARGET_H
       
    42