toolsandutils/e32tools/elf2e32/source/polydll_rebuild_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 // polydllrebuild_target.h
       
    15 // Declaration of Class POLYDLLRebuildTarget of the elf2e32 tool
       
    16 // @internalComponent
       
    17 // @released
       
    18 // 
       
    19 //
       
    20 
       
    21 #ifndef POLYDLLREBUILD_TARGET_H
       
    22 #define POLYDLLREBUILD_TARGET_H
       
    23 
       
    24 #include "export_type_rebuild_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 base class ExportTypeRebuildTarget and is responsible for
       
    33 PolyDLL rebuild.
       
    34 
       
    35 @internalComponent
       
    36 @released
       
    37 */
       
    38 class POLYDLLRebuildTarget : public ExportTypeRebuildTarget
       
    39 {
       
    40 
       
    41 public:
       
    42 	POLYDLLRebuildTarget(ParameterListInterface* aParameterListInterface);
       
    43 	~POLYDLLRebuildTarget();
       
    44 	void ProcessExports();
       
    45 	void GenerateOutput();
       
    46 };
       
    47 
       
    48 
       
    49 #endif // POLYDLLREBUILD_TARGET_H
       
    50 
       
    51