diff --git a/hurricane/src/hurricane/BasicLayer.cpp b/hurricane/src/hurricane/BasicLayer.cpp index 9f094e1d..e704a012 100644 --- a/hurricane/src/hurricane/BasicLayer.cpp +++ b/hurricane/src/hurricane/BasicLayer.cpp @@ -4,10 +4,10 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "BasicLayer.h" -#include "Technology.h" -#include "CompositeLayer.h" -#include "Error.h" +#include "hurricane/BasicLayer.h" +#include "hurricane/Technology.h" +#include "hurricane/CompositeLayer.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Box.cpp b/hurricane/src/hurricane/Box.cpp index c7305170..433cfa2b 100644 --- a/hurricane/src/hurricane/Box.cpp +++ b/hurricane/src/hurricane/Box.cpp @@ -5,8 +5,8 @@ // **************************************************************************************************** // 21-10-2003 added ManhattanDistance & ShrinkByFactor -#include "Error.h" -#include "Box.h" +#include "hurricane/Error.h" +#include "hurricane/Box.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/CMakeLists.txt b/hurricane/src/hurricane/CMakeLists.txt index 984f4ed1..0437c626 100644 --- a/hurricane/src/hurricane/CMakeLists.txt +++ b/hurricane/src/hurricane/CMakeLists.txt @@ -1,36 +1,141 @@ -set(includes BasicLayer.h BasicLayers.h Boxes.h Box.h Cell.h -Cells.h Collection.h Commons.h Component.h Components.h CompositeLayer.h -CompositeLayers.h Contact.h Contacts.h DataBase.h DBo.h DBos.h -DeepNet.h DisplaySlot.h DisplaySlots.h DRCError.h Entities.h -Entity.h Error.h Exception.h Filter.h Go.h Gos.h -Hook.h Hooks.h Horizontal.h Horizontals.h -HyperNet.h Instance.h Instances.h Interruption.h Interval.h -Intervals.h IntrusiveMap.h IntrusiveSet.h Layer.h Layers.h Libraries.h -Library.h ListCollection.h Locator.h MapCollection.h Marker.h Markers.h -MultisetCollection.h Name.h Names.h NetExternalComponents.h Net.h -Nets.h Occurrence.h Occurrences.h Pad.h Pads.h Pathes.h Path.h -Pin.h Pins.h Plug.h Plugs.h Point.h Points.h Primitives.h Properties.h -Property.h QuadTree.h Quark.h Quarks.h Record.h Reference.h References.h Region.h -Relation.h RoutingPad.h RoutingPads.h Rubber.h Rubbers.h Segment.h Segments.h Selectors.h -SetCollection.h SharedName.h SharedPathes.h SharedPath.h Slice.h Slices.h -SlotAdapter.h Slot.h Symbols.h Tabulation.h Technology.h Timer.h -Transformation.h Unit.h UpdateSession.h UserGo.h UserGos.h VectorCollection.h Vertical.h -Verticals.h Views.h Warning.h) -set(cpps BasicLayer.cpp Box.cpp CellCollections.cpp Cell.cpp -Commons.cpp Component.cpp CompositeLayer.cpp Contact.cpp DataBase.cpp -DBo.cpp DeepNet.cpp DisplaySlot.cpp DRCError.cpp Entity.cpp -Error.cpp Exception.cpp Go.cpp Hook.cpp Horizontal.cpp HyperNet.cpp -Instance.cpp Interruption.cpp Interval.cpp Layer.cpp Library.cpp -Marker.cpp Name.cpp Net.cpp NetExternalComponents.cpp Occurrence.cpp -Pad.cpp Path.cpp Pin.cpp Plug.cpp Point.cpp Property.cpp -QuadTree.cpp Quark.cpp Record.cpp Reference.cpp Region.cpp -Relation.cpp RoutingPad.cpp Rubber.cpp Segment.cpp SharedName.cpp -SharedPath.cpp Slice.cpp SlotAdapter.cpp Slot.cpp Tabulation.cpp -Technology.cpp Timer.cpp Transformation.cpp Unit.cpp UpdateSession.cpp -UserGo.cpp Vertical.cpp Warning.cpp) -add_library(hurricane SHARED ${cpps}) - -install(FILES ${includes} DESTINATION /include/hurricane) -install(TARGETS hurricane DESTINATION /lib) + include_directories ( ${HURRICANE_SOURCE_DIR}/src/hurricane ) + set ( includes hurricane/BasicLayer.h hurricane/BasicLayers.h + hurricane/Boxes.h hurricane/Box.h + hurricane/Cell.h hurricane/Cells.h + hurricane/Collection.h + hurricane/Commons.h + hurricane/Component.h hurricane/Components.h + hurricane/CompositeLayer.h hurricane/CompositeLayers.h + hurricane/Contact.h hurricane/Contacts.h + hurricane/DataBase.h + hurricane/DBo.h hurricane/DBos.h + hurricane/DeepNet.h + hurricane/DisplaySlot.h hurricane/DisplaySlots.h + hurricane/DRCError.h + hurricane/Entities.h hurricane/Entity.h + hurricane/Error.h + hurricane/Exception.h + hurricane/Filter.h + hurricane/Go.h hurricane/Gos.h + hurricane/Hook.h hurricane/Hooks.h + hurricane/Horizontal.h hurricane/Horizontals.h + hurricane/HyperNet.h + hurricane/Instance.h hurricane/Instances.h + hurricane/Interruption.h + hurricane/Interval.h hurricane/Intervals.h + hurricane/IntrusiveMap.h + hurricane/IntrusiveSet.h + hurricane/Layer.h hurricane/Layers.h + hurricane/Libraries.h hurricane/Library.h + hurricane/ListCollection.h + hurricane/Locator.h + hurricane/MapCollection.h + hurricane/Marker.h hurricane/Markers.h + hurricane/MultisetCollection.h + hurricane/Name.h hurricane/Names.h + hurricane/NetExternalComponents.h + hurricane/Net.h hurricane/Nets.h + hurricane/Occurrence.h hurricane/Occurrences.h + hurricane/Pad.h hurricane/Pads.h + hurricane/Pathes.h hurricane/Path.h + hurricane/Pin.h hurricane/Pins.h + hurricane/Plug.h hurricane/Plugs.h + hurricane/Point.h hurricane/Points.h + hurricane/Primitives.h + hurricane/Properties.h hurricane/Property.h + hurricane/QuadTree.h + hurricane/Quark.h hurricane/Quarks.h + hurricane/Record.h + hurricane/Reference.h hurricane/References.h + hurricane/Region.h + hurricane/Relation.h + hurricane/RoutingPad.h hurricane/RoutingPads.h + hurricane/Rubber.h hurricane/Rubbers.h + hurricane/Segment.h hurricane/Segments.h + hurricane/Selectors.h + hurricane/SetCollection.h + hurricane/SharedName.h + hurricane/SharedPathes.h hurricane/SharedPath.h + hurricane/Slice.h hurricane/Slices.h + hurricane/SlotAdapter.h + hurricane/Slot.h + hurricane/Symbols.h + hurricane/Tabulation.h + hurricane/Technology.h + hurricane/Timer.h + hurricane/Transformation.h + hurricane/Unit.h + hurricane/UpdateSession.h + hurricane/UserGo.h hurricane/UserGos.h + hurricane/VectorCollection.h + hurricane/Vertical.h hurricane/Verticals.h + hurricane/Views.h + hurricane/Warning.h + ) + set ( cpps BasicLayer.cpp + Box.cpp + CellCollections.cpp + Cell.cpp + Commons.cpp + Component.cpp + CompositeLayer.cpp + Contact.cpp + DataBase.cpp + DBo.cpp + DeepNet.cpp + DisplaySlot.cpp + DRCError.cpp + Entity.cpp + Error.cpp + Exception.cpp + Go.cpp + Hook.cpp + Horizontal.cpp + HyperNet.cpp + Instance.cpp + Interruption.cpp + Interval.cpp + Layer.cpp + Library.cpp + Marker.cpp + Name.cpp + Net.cpp + NetExternalComponents.cpp + Occurrence.cpp + Pad.cpp + Path.cpp + Pin.cpp + Plug.cpp + Point.cpp + Property.cpp + QuadTree.cpp + Quark.cpp + Record.cpp + Reference.cpp + Region.cpp + Relation.cpp + RoutingPad.cpp + Rubber.cpp + Segment.cpp + SharedName.cpp + SharedPath.cpp + Slice.cpp + SlotAdapter.cpp + Slot.cpp + Tabulation.cpp + Technology.cpp + Timer.cpp + Transformation.cpp + Unit.cpp + UpdateSession.cpp + UserGo.cpp + Vertical.cpp + Warning.cpp + ) + + add_library ( hurricane SHARED ${cpps} ) + + install ( FILES ${includes} DESTINATION /include/hurricane) + install ( TARGETS hurricane DESTINATION /lib) diff --git a/hurricane/src/hurricane/Cell.cpp b/hurricane/src/hurricane/Cell.cpp index f90fef06..1b9918a2 100644 --- a/hurricane/src/hurricane/Cell.cpp +++ b/hurricane/src/hurricane/Cell.cpp @@ -4,20 +4,20 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "Cell.h" -#include "DataBase.h" -#include "Library.h" -#include "Instance.h" -#include "Net.h" -#include "Pin.h" -#include "RoutingPad.h" -#include "Layer.h" -#include "Slice.h" -#include "Rubber.h" -#include "Marker.h" -#include "Component.h" -#include "UpdateSession.h" -#include "Error.h" +#include "hurricane/Cell.h" +#include "hurricane/DataBase.h" +#include "hurricane/Library.h" +#include "hurricane/Instance.h" +#include "hurricane/Net.h" +#include "hurricane/Pin.h" +#include "hurricane/RoutingPad.h" +#include "hurricane/Layer.h" +#include "hurricane/Slice.h" +#include "hurricane/Rubber.h" +#include "hurricane/Marker.h" +#include "hurricane/Component.h" +#include "hurricane/UpdateSession.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/CellCollections.cpp b/hurricane/src/hurricane/CellCollections.cpp index 9a388886..87491866 100644 --- a/hurricane/src/hurricane/CellCollections.cpp +++ b/hurricane/src/hurricane/CellCollections.cpp @@ -4,10 +4,10 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "Slice.h" -#include "Cell.h" -//#include "MainView.h" -#include "HyperNet.h" +#include "hurricane/Slice.h" +#include "hurricane/Cell.h" +//#include "hurricane/MainView.h" +#include "hurricane/HyperNet.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Commons.cpp b/hurricane/src/hurricane/Commons.cpp index 73102fa2..36403bc4 100644 --- a/hurricane/src/hurricane/Commons.cpp +++ b/hurricane/src/hurricane/Commons.cpp @@ -6,11 +6,11 @@ #ifdef HAVE_LIBIBERTY -# include "demangle.h" -# include "libiberty.h" +#include "hurricane/demangle.h" +#include "hurricane/libiberty.h" #endif -#include "Commons.h" +#include "hurricane/Commons.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Component.cpp b/hurricane/src/hurricane/Component.cpp index d1d6bb9b..2f7ad09d 100644 --- a/hurricane/src/hurricane/Component.cpp +++ b/hurricane/src/hurricane/Component.cpp @@ -4,13 +4,13 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "Component.h" -#include "Net.h" -#include "Cell.h" -#include "Rubber.h" -#include "Slice.h" -#include "BasicLayer.h" -#include "Error.h" +#include "hurricane/Component.h" +#include "hurricane/Net.h" +#include "hurricane/Cell.h" +#include "hurricane/Rubber.h" +#include "hurricane/Slice.h" +#include "hurricane/BasicLayer.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/CompositeLayer.cpp b/hurricane/src/hurricane/CompositeLayer.cpp index 3d16248c..b9533abd 100644 --- a/hurricane/src/hurricane/CompositeLayer.cpp +++ b/hurricane/src/hurricane/CompositeLayer.cpp @@ -4,10 +4,10 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "CompositeLayer.h" -#include "Technology.h" -#include "BasicLayer.h" -#include "Error.h" +#include "hurricane/CompositeLayer.h" +#include "hurricane/Technology.h" +#include "hurricane/BasicLayer.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Contact.cpp b/hurricane/src/hurricane/Contact.cpp index 04f20415..d10e7bff 100644 --- a/hurricane/src/hurricane/Contact.cpp +++ b/hurricane/src/hurricane/Contact.cpp @@ -4,12 +4,12 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "Contact.h" -#include "Net.h" -#include "BasicLayer.h" -#include "CompositeLayer.h" -#include "Plug.h" -#include "Error.h" +#include "hurricane/Contact.h" +#include "hurricane/Net.h" +#include "hurricane/BasicLayer.h" +#include "hurricane/CompositeLayer.h" +#include "hurricane/Plug.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/DBo.cpp b/hurricane/src/hurricane/DBo.cpp index f1952ffa..85b4dc19 100644 --- a/hurricane/src/hurricane/DBo.cpp +++ b/hurricane/src/hurricane/DBo.cpp @@ -4,10 +4,10 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "DBo.h" -#include "Property.h" -#include "Quark.h" -#include "Error.h" +#include "hurricane/DBo.h" +#include "hurricane/Property.h" +#include "hurricane/Quark.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/DRCError.cpp b/hurricane/src/hurricane/DRCError.cpp index 035def73..c5214a78 100644 --- a/hurricane/src/hurricane/DRCError.cpp +++ b/hurricane/src/hurricane/DRCError.cpp @@ -4,10 +4,10 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "DRCError.h" -#include "Cell.h" -#include "Slice.h" -#include "Error.h" +#include "hurricane/DRCError.h" +#include "hurricane/Cell.h" +#include "hurricane/Slice.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/DataBase.cpp b/hurricane/src/hurricane/DataBase.cpp index 29cdcffc..4ab00549 100644 --- a/hurricane/src/hurricane/DataBase.cpp +++ b/hurricane/src/hurricane/DataBase.cpp @@ -4,13 +4,13 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "DataBase.h" -#include "Technology.h" -#include "Library.h" -#include "Cell.h" -#include "Timer.h" -#include "Error.h" -#include "UpdateSession.h" +#include "hurricane/DataBase.h" +#include "hurricane/Technology.h" +#include "hurricane/Library.h" +#include "hurricane/Cell.h" +#include "hurricane/Timer.h" +#include "hurricane/Error.h" +#include "hurricane/UpdateSession.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/DeepNet.cpp b/hurricane/src/hurricane/DeepNet.cpp index 34e3fb7c..a656f5cf 100644 --- a/hurricane/src/hurricane/DeepNet.cpp +++ b/hurricane/src/hurricane/DeepNet.cpp @@ -50,18 +50,18 @@ -# include "DeepNet.h" -# include "Cell.h" -# include "Instance.h" -# include "Plug.h" -# include "RoutingPad.h" -# include "Pin.h" -# include "Contact.h" -# include "Vertical.h" -# include "Horizontal.h" -# include "Pad.h" -# include "UpdateSession.h" -# include "Error.h" +#include "hurricane/DeepNet.h" +#include "hurricane/Cell.h" +#include "hurricane/Instance.h" +#include "hurricane/Plug.h" +#include "hurricane/RoutingPad.h" +#include "hurricane/Pin.h" +#include "hurricane/Contact.h" +#include "hurricane/Vertical.h" +#include "hurricane/Horizontal.h" +#include "hurricane/Pad.h" +#include "hurricane/UpdateSession.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/DisplaySlot.cpp b/hurricane/src/hurricane/DisplaySlot.cpp index 14d0af83..a5cc34cb 100644 --- a/hurricane/src/hurricane/DisplaySlot.cpp +++ b/hurricane/src/hurricane/DisplaySlot.cpp @@ -8,13 +8,13 @@ // Author: C. Alexandre // **************************************************************************************************** -#include "Error.h" -#include "UserGo.h" -#include "Relation.h" -#include "Cell.h" -#include "UpdateSession.h" +#include "hurricane/Error.h" +#include "hurricane/UserGo.h" +#include "hurricane/Relation.h" +#include "hurricane/Cell.h" +#include "hurricane/UpdateSession.h" -#include "DisplaySlot.h" +#include "hurricane/DisplaySlot.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Entity.cpp b/hurricane/src/hurricane/Entity.cpp index 8c6af30e..e06872a1 100644 --- a/hurricane/src/hurricane/Entity.cpp +++ b/hurricane/src/hurricane/Entity.cpp @@ -4,11 +4,11 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "Entity.h" -#include "Quark.h" -#include "Cell.h" -#include "Instance.h" -#include "SharedPath.h" +#include "hurricane/Entity.h" +#include "hurricane/Quark.h" +#include "hurricane/Cell.h" +#include "hurricane/Instance.h" +#include "hurricane/SharedPath.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Error.cpp b/hurricane/src/hurricane/Error.cpp index 3ce3cb1f..c17e6030 100644 --- a/hurricane/src/hurricane/Error.cpp +++ b/hurricane/src/hurricane/Error.cpp @@ -4,7 +4,7 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "Error.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Exception.cpp b/hurricane/src/hurricane/Exception.cpp index 93668bbf..0b2f0520 100644 --- a/hurricane/src/hurricane/Exception.cpp +++ b/hurricane/src/hurricane/Exception.cpp @@ -4,7 +4,7 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "Exception.h" +#include "hurricane/Exception.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Go.cpp b/hurricane/src/hurricane/Go.cpp index 1fb8f93c..87f454ac 100644 --- a/hurricane/src/hurricane/Go.cpp +++ b/hurricane/src/hurricane/Go.cpp @@ -4,8 +4,8 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "Go.h" -#include "QuadTree.h" +#include "hurricane/Go.h" +#include "hurricane/QuadTree.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Hook.cpp b/hurricane/src/hurricane/Hook.cpp index 2442e324..dabdcaf7 100644 --- a/hurricane/src/hurricane/Hook.cpp +++ b/hurricane/src/hurricane/Hook.cpp @@ -4,10 +4,10 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "Hook.h" -#include "Component.h" -#include "Rubber.h" -#include "Error.h" +#include "hurricane/Hook.h" +#include "hurricane/Component.h" +#include "hurricane/Rubber.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Horizontal.cpp b/hurricane/src/hurricane/Horizontal.cpp index 27fe13a9..253a04cb 100644 --- a/hurricane/src/hurricane/Horizontal.cpp +++ b/hurricane/src/hurricane/Horizontal.cpp @@ -4,12 +4,12 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "Horizontal.h" -#include "Net.h" -#include "BasicLayer.h" -#include "CompositeLayer.h" -#include "Plug.h" -#include "Error.h" +#include "hurricane/Horizontal.h" +#include "hurricane/Net.h" +#include "hurricane/BasicLayer.h" +#include "hurricane/CompositeLayer.h" +#include "hurricane/Plug.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/HyperNet.cpp b/hurricane/src/hurricane/HyperNet.cpp index 2a0bf9ad..ba394ec0 100644 --- a/hurricane/src/hurricane/HyperNet.cpp +++ b/hurricane/src/hurricane/HyperNet.cpp @@ -5,14 +5,14 @@ // **************************************************************************************************** // 21-10-2003 Alignment BULL-LIP6 -#include "HyperNet.h" -#include "Cell.h" -#include "Net.h" -#include "Instance.h" -#include "Rubber.h" -#include "Plug.h" -#include "BasicLayer.h" -#include "Error.h" +#include "hurricane/HyperNet.h" +#include "hurricane/Cell.h" +#include "hurricane/Net.h" +#include "hurricane/Instance.h" +#include "hurricane/Rubber.h" +#include "hurricane/Plug.h" +#include "hurricane/BasicLayer.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Instance.cpp b/hurricane/src/hurricane/Instance.cpp index c022ae34..22b3789a 100644 --- a/hurricane/src/hurricane/Instance.cpp +++ b/hurricane/src/hurricane/Instance.cpp @@ -5,12 +5,12 @@ // **************************************************************************************************** // 21-10-2003 Alignment BULL-LIP6 -#include "Instance.h" -#include "Cell.h" -#include "Net.h" -#include "Plug.h" -#include "SharedPath.h" -#include "Error.h" +#include "hurricane/Instance.h" +#include "hurricane/Cell.h" +#include "hurricane/Net.h" +#include "hurricane/Plug.h" +#include "hurricane/SharedPath.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Interruption.cpp b/hurricane/src/hurricane/Interruption.cpp index b9f26597..47410a8c 100644 --- a/hurricane/src/hurricane/Interruption.cpp +++ b/hurricane/src/hurricane/Interruption.cpp @@ -4,7 +4,7 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "Interruption.h" +#include "hurricane/Interruption.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Interval.cpp b/hurricane/src/hurricane/Interval.cpp index fd2bb087..d9400a91 100644 --- a/hurricane/src/hurricane/Interval.cpp +++ b/hurricane/src/hurricane/Interval.cpp @@ -4,7 +4,7 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "Interval.h" +#include "hurricane/Interval.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Layer.cpp b/hurricane/src/hurricane/Layer.cpp index eb0de437..f26982fa 100644 --- a/hurricane/src/hurricane/Layer.cpp +++ b/hurricane/src/hurricane/Layer.cpp @@ -4,9 +4,9 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "Layer.h" -#include "Technology.h" -#include "Error.h" +#include "hurricane/Layer.h" +#include "hurricane/Technology.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Library.cpp b/hurricane/src/hurricane/Library.cpp index 2415db48..6b27372f 100644 --- a/hurricane/src/hurricane/Library.cpp +++ b/hurricane/src/hurricane/Library.cpp @@ -4,11 +4,11 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "Library.h" -#include "DataBase.h" -#include "Cell.h" -#include "Technology.h" -#include "Error.h" +#include "hurricane/Library.h" +#include "hurricane/DataBase.h" +#include "hurricane/Cell.h" +#include "hurricane/Technology.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Marker.cpp b/hurricane/src/hurricane/Marker.cpp index ca9b0e11..dfa86f93 100644 --- a/hurricane/src/hurricane/Marker.cpp +++ b/hurricane/src/hurricane/Marker.cpp @@ -4,10 +4,10 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "Marker.h" -#include "Cell.h" -#include "Slice.h" -#include "Error.h" +#include "hurricane/Marker.h" +#include "hurricane/Cell.h" +#include "hurricane/Slice.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Name.cpp b/hurricane/src/hurricane/Name.cpp index 398bbe47..524a29c7 100644 --- a/hurricane/src/hurricane/Name.cpp +++ b/hurricane/src/hurricane/Name.cpp @@ -4,8 +4,8 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "Name.h" -#include "SharedName.h" +#include "hurricane/Name.h" +#include "hurricane/SharedName.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Net.cpp b/hurricane/src/hurricane/Net.cpp index 0741875c..9834d817 100644 --- a/hurricane/src/hurricane/Net.cpp +++ b/hurricane/src/hurricane/Net.cpp @@ -4,19 +4,19 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "Net.h" -#include "Cell.h" -#include "Instance.h" -#include "Plug.h" -#include "RoutingPad.h" -#include "RoutingPads.h" -#include "Pin.h" -#include "Contact.h" -#include "Vertical.h" -#include "Horizontal.h" -#include "Pad.h" -#include "UpdateSession.h" -#include "Error.h" +#include "hurricane/Net.h" +#include "hurricane/Cell.h" +#include "hurricane/Instance.h" +#include "hurricane/Plug.h" +#include "hurricane/RoutingPad.h" +#include "hurricane/RoutingPads.h" +#include "hurricane/Pin.h" +#include "hurricane/Contact.h" +#include "hurricane/Vertical.h" +#include "hurricane/Horizontal.h" +#include "hurricane/Pad.h" +#include "hurricane/UpdateSession.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/NetExternalComponents.cpp b/hurricane/src/hurricane/NetExternalComponents.cpp index 8cc30a08..0b807fce 100644 --- a/hurricane/src/hurricane/NetExternalComponents.cpp +++ b/hurricane/src/hurricane/NetExternalComponents.cpp @@ -8,11 +8,11 @@ // Author: C. Alexandre // **************************************************************************************************** -#include "Error.h" -#include "Relation.h" -#include "Net.h" +#include "hurricane/Error.h" +#include "hurricane/Relation.h" +#include "hurricane/Net.h" -#include "NetExternalComponents.h" +#include "hurricane/NetExternalComponents.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Occurrence.cpp b/hurricane/src/hurricane/Occurrence.cpp index 051ba534..9c9ef327 100644 --- a/hurricane/src/hurricane/Occurrence.cpp +++ b/hurricane/src/hurricane/Occurrence.cpp @@ -4,13 +4,13 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "Occurrence.h" -#include "Entity.h" -#include "Cell.h" -#include "SharedPath.h" -#include "Property.h" -#include "Quark.h" -#include "Error.h" +#include "hurricane/Occurrence.h" +#include "hurricane/Entity.h" +#include "hurricane/Cell.h" +#include "hurricane/SharedPath.h" +#include "hurricane/Property.h" +#include "hurricane/Quark.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Pad.cpp b/hurricane/src/hurricane/Pad.cpp index f8c79845..a988516f 100644 --- a/hurricane/src/hurricane/Pad.cpp +++ b/hurricane/src/hurricane/Pad.cpp @@ -5,11 +5,11 @@ // **************************************************************************************************** // 21-10-2003 Alignment BULL-LIP6 (to be seen : PROVISOIREMENT in _Draw & _Highlight) -#include "Pad.h" -#include "Net.h" -#include "BasicLayer.h" -#include "CompositeLayer.h" -#include "Error.h" +#include "hurricane/Pad.h" +#include "hurricane/Net.h" +#include "hurricane/BasicLayer.h" +#include "hurricane/CompositeLayer.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Path.cpp b/hurricane/src/hurricane/Path.cpp index 13a5201f..71cb866d 100644 --- a/hurricane/src/hurricane/Path.cpp +++ b/hurricane/src/hurricane/Path.cpp @@ -4,11 +4,11 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "Path.h" -#include "SharedPath.h" -#include "Cell.h" -#include "Instance.h" -#include "Error.h" +#include "hurricane/Path.h" +#include "hurricane/SharedPath.h" +#include "hurricane/Cell.h" +#include "hurricane/Instance.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Pin.cpp b/hurricane/src/hurricane/Pin.cpp index 89da7928..01268faa 100644 --- a/hurricane/src/hurricane/Pin.cpp +++ b/hurricane/src/hurricane/Pin.cpp @@ -8,8 +8,8 @@ // Authors: Christophe Alexandre. // **************************************************************************************************** -#include "Cell.h" -#include "Pin.h" +#include "hurricane/Cell.h" +#include "hurricane/Pin.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Plug.cpp b/hurricane/src/hurricane/Plug.cpp index ee626e0b..ee86635e 100644 --- a/hurricane/src/hurricane/Plug.cpp +++ b/hurricane/src/hurricane/Plug.cpp @@ -4,11 +4,11 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "Plug.h" -#include "Net.h" -#include "Cell.h" -#include "Instance.h" -#include "Error.h" +#include "hurricane/Plug.h" +#include "hurricane/Net.h" +#include "hurricane/Cell.h" +#include "hurricane/Instance.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Point.cpp b/hurricane/src/hurricane/Point.cpp index 4d1d6d96..543d6447 100644 --- a/hurricane/src/hurricane/Point.cpp +++ b/hurricane/src/hurricane/Point.cpp @@ -5,7 +5,7 @@ // **************************************************************************************************** // 21-10-2003 Alignment BULL-LIP6 : added operators+ += ... (questionnable!) -#include "Point.h" +#include "hurricane/Point.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Property.cpp b/hurricane/src/hurricane/Property.cpp index d35483b4..af38d041 100644 --- a/hurricane/src/hurricane/Property.cpp +++ b/hurricane/src/hurricane/Property.cpp @@ -4,9 +4,9 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "Property.h" -#include "DBo.h" -#include "Error.h" +#include "hurricane/Property.h" +#include "hurricane/DBo.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/QuadTree.cpp b/hurricane/src/hurricane/QuadTree.cpp index 726d6ecf..4c487e14 100644 --- a/hurricane/src/hurricane/QuadTree.cpp +++ b/hurricane/src/hurricane/QuadTree.cpp @@ -4,9 +4,9 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "QuadTree.h" -#include "Go.h" -#include "Error.h" +#include "hurricane/QuadTree.h" +#include "hurricane/Go.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Quark.cpp b/hurricane/src/hurricane/Quark.cpp index 8e2cdb07..723f0d94 100644 --- a/hurricane/src/hurricane/Quark.cpp +++ b/hurricane/src/hurricane/Quark.cpp @@ -4,10 +4,10 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "Quark.h" -#include "SharedPath.h" -#include "Entity.h" -#include "Error.h" +#include "hurricane/Quark.h" +#include "hurricane/SharedPath.h" +#include "hurricane/Entity.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Record.cpp b/hurricane/src/hurricane/Record.cpp index 5ace78e7..9814681a 100644 --- a/hurricane/src/hurricane/Record.cpp +++ b/hurricane/src/hurricane/Record.cpp @@ -4,7 +4,7 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "Commons.h" +#include "hurricane/Commons.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Reference.cpp b/hurricane/src/hurricane/Reference.cpp index 48e79497..c4fad0c1 100644 --- a/hurricane/src/hurricane/Reference.cpp +++ b/hurricane/src/hurricane/Reference.cpp @@ -4,10 +4,10 @@ // Copyright (c) LIP6/UPMC 2006-2006, All Rights Reserved // **************************************************************************************************** -#include "Reference.h" -#include "Cell.h" -#include "Slice.h" -#include "Error.h" +#include "hurricane/Reference.h" +#include "hurricane/Cell.h" +#include "hurricane/Slice.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Region.cpp b/hurricane/src/hurricane/Region.cpp index 0b77d2a1..2c50fab6 100644 --- a/hurricane/src/hurricane/Region.cpp +++ b/hurricane/src/hurricane/Region.cpp @@ -4,8 +4,8 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "Region.h" -#include "Error.h" +#include "hurricane/Region.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Relation.cpp b/hurricane/src/hurricane/Relation.cpp index f443ef13..122b581e 100644 --- a/hurricane/src/hurricane/Relation.cpp +++ b/hurricane/src/hurricane/Relation.cpp @@ -4,11 +4,11 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "Relation.h" -#include "DBo.h" -#include "Error.h" +#include "hurricane/Relation.h" +#include "hurricane/DBo.h" +#include "hurricane/Error.h" -#include "Filter.h" +#include "hurricane/Filter.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/RoutingPad.cpp b/hurricane/src/hurricane/RoutingPad.cpp index 479e63e4..589e116d 100644 --- a/hurricane/src/hurricane/RoutingPad.cpp +++ b/hurricane/src/hurricane/RoutingPad.cpp @@ -8,18 +8,18 @@ // Authors: H.Clement, M.Sroka // **************************************************************************************************** -#include "RoutingPad.h" -#include "Net.h" -#include "NetExternalComponents.h" -#include "CompositeLayer.h" -#include "Plug.h" -#include "Pin.h" -#include "Segment.h" -#include "Horizontal.h" -#include "Vertical.h" -#include "Cell.h" -#include "Instance.h" -#include "Error.h" +#include "hurricane/RoutingPad.h" +#include "hurricane/Net.h" +#include "hurricane/NetExternalComponents.h" +#include "hurricane/CompositeLayer.h" +#include "hurricane/Plug.h" +#include "hurricane/Pin.h" +#include "hurricane/Segment.h" +#include "hurricane/Horizontal.h" +#include "hurricane/Vertical.h" +#include "hurricane/Cell.h" +#include "hurricane/Instance.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Rubber.cpp b/hurricane/src/hurricane/Rubber.cpp index 7b002efe..f659372e 100644 --- a/hurricane/src/hurricane/Rubber.cpp +++ b/hurricane/src/hurricane/Rubber.cpp @@ -5,14 +5,14 @@ // **************************************************************************************************** // 21-10-2003 Alignment BULL-LIP6 : Rubbers end at component center -#include "Rubber.h" -#include "Net.h" -#include "Plug.h" -#include "Instance.h" -#include "Cell.h" -#include "Hook.h" -#include "Component.h" -#include "Error.h" +#include "hurricane/Rubber.h" +#include "hurricane/Net.h" +#include "hurricane/Plug.h" +#include "hurricane/Instance.h" +#include "hurricane/Cell.h" +#include "hurricane/Hook.h" +#include "hurricane/Component.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Segment.cpp b/hurricane/src/hurricane/Segment.cpp index f952b335..f538c8e4 100644 --- a/hurricane/src/hurricane/Segment.cpp +++ b/hurricane/src/hurricane/Segment.cpp @@ -5,10 +5,10 @@ // **************************************************************************************************** // 21-10-2003 Alignment BULL-LIP6 -#include "Segment.h" -#include "BasicLayer.h" -#include "CompositeLayer.h" -#include "Error.h" +#include "hurricane/Segment.h" +#include "hurricane/BasicLayer.h" +#include "hurricane/CompositeLayer.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/SharedName.cpp b/hurricane/src/hurricane/SharedName.cpp index 5b06b399..d551ba07 100644 --- a/hurricane/src/hurricane/SharedName.cpp +++ b/hurricane/src/hurricane/SharedName.cpp @@ -4,7 +4,7 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "SharedName.h" +#include "hurricane/SharedName.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/SharedPath.cpp b/hurricane/src/hurricane/SharedPath.cpp index e7e3314c..960b4dce 100644 --- a/hurricane/src/hurricane/SharedPath.cpp +++ b/hurricane/src/hurricane/SharedPath.cpp @@ -4,11 +4,11 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "SharedPath.h" -#include "Instance.h" -#include "Cell.h" -#include "Quark.h" -#include "Error.h" +#include "hurricane/SharedPath.h" +#include "hurricane/Instance.h" +#include "hurricane/Cell.h" +#include "hurricane/Quark.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Slice.cpp b/hurricane/src/hurricane/Slice.cpp index 4ec855de..75754088 100644 --- a/hurricane/src/hurricane/Slice.cpp +++ b/hurricane/src/hurricane/Slice.cpp @@ -4,12 +4,12 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "Slice.h" -#include "Cell.h" -#include "Component.h" -#include "Marker.h" -#include "Layer.h" -#include "Error.h" +#include "hurricane/Slice.h" +#include "hurricane/Cell.h" +#include "hurricane/Component.h" +#include "hurricane/Marker.h" +#include "hurricane/Layer.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Slot.cpp b/hurricane/src/hurricane/Slot.cpp index dfc87443..569be0bc 100644 --- a/hurricane/src/hurricane/Slot.cpp +++ b/hurricane/src/hurricane/Slot.cpp @@ -25,7 +25,7 @@ -#include "Commons.h" +#include "hurricane/Commons.h" diff --git a/hurricane/src/hurricane/SlotAdapter.cpp b/hurricane/src/hurricane/SlotAdapter.cpp index 77d2fcc4..e7155bd6 100644 --- a/hurricane/src/hurricane/SlotAdapter.cpp +++ b/hurricane/src/hurricane/SlotAdapter.cpp @@ -51,7 +51,7 @@ # include -# include "Commons.h" +#include "hurricane/Commons.h" diff --git a/hurricane/src/hurricane/Tabulation.cpp b/hurricane/src/hurricane/Tabulation.cpp index 811dec7d..2d53eb0a 100644 --- a/hurricane/src/hurricane/Tabulation.cpp +++ b/hurricane/src/hurricane/Tabulation.cpp @@ -4,7 +4,7 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "Tabulation.h" +#include "hurricane/Tabulation.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Technology.cpp b/hurricane/src/hurricane/Technology.cpp index b870d1a8..a0901788 100644 --- a/hurricane/src/hurricane/Technology.cpp +++ b/hurricane/src/hurricane/Technology.cpp @@ -4,12 +4,12 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "Technology.h" -#include "DataBase.h" -#include "Layer.h" -#include "BasicLayer.h" -#include "CompositeLayer.h" -#include "Error.h" +#include "hurricane/Technology.h" +#include "hurricane/DataBase.h" +#include "hurricane/Layer.h" +#include "hurricane/BasicLayer.h" +#include "hurricane/CompositeLayer.h" +#include "hurricane/Error.h" diff --git a/hurricane/src/hurricane/Timer.cpp b/hurricane/src/hurricane/Timer.cpp index 5bf958c4..a9e310ee 100644 --- a/hurricane/src/hurricane/Timer.cpp +++ b/hurricane/src/hurricane/Timer.cpp @@ -4,7 +4,7 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "Timer.h" +#include "hurricane/Timer.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Transformation.cpp b/hurricane/src/hurricane/Transformation.cpp index 5ca71fb1..f952a63b 100644 --- a/hurricane/src/hurricane/Transformation.cpp +++ b/hurricane/src/hurricane/Transformation.cpp @@ -4,7 +4,7 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "Transformation.h" +#include "hurricane/Transformation.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Unit.cpp b/hurricane/src/hurricane/Unit.cpp index c4337a08..b8f01ff8 100644 --- a/hurricane/src/hurricane/Unit.cpp +++ b/hurricane/src/hurricane/Unit.cpp @@ -4,8 +4,8 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "Unit.h" -#include "Error.h" +#include "hurricane/Unit.h" +#include "hurricane/Error.h" #include diff --git a/hurricane/src/hurricane/UpdateSession.cpp b/hurricane/src/hurricane/UpdateSession.cpp index 6ccee92e..4dc4cdde 100644 --- a/hurricane/src/hurricane/UpdateSession.cpp +++ b/hurricane/src/hurricane/UpdateSession.cpp @@ -4,10 +4,10 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "UpdateSession.h" -#include "Go.h" -#include "Cell.h" -#include "Error.h" +#include "hurricane/UpdateSession.h" +#include "hurricane/Go.h" +#include "hurricane/Cell.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/UserGo.cpp b/hurricane/src/hurricane/UserGo.cpp index 950574a5..e776d09f 100644 --- a/hurricane/src/hurricane/UserGo.cpp +++ b/hurricane/src/hurricane/UserGo.cpp @@ -8,8 +8,8 @@ // Authors: C. Alexandre // **************************************************************************************************** -#include "Cell.h" -#include "UserGo.h" +#include "hurricane/Cell.h" +#include "hurricane/UserGo.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Vertical.cpp b/hurricane/src/hurricane/Vertical.cpp index 522e8999..0892c99c 100644 --- a/hurricane/src/hurricane/Vertical.cpp +++ b/hurricane/src/hurricane/Vertical.cpp @@ -4,12 +4,12 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "Vertical.h" -#include "Net.h" -#include "BasicLayer.h" -#include "CompositeLayer.h" -#include "Plug.h" -#include "Error.h" +#include "hurricane/Vertical.h" +#include "hurricane/Net.h" +#include "hurricane/BasicLayer.h" +#include "hurricane/CompositeLayer.h" +#include "hurricane/Plug.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Warning.cpp b/hurricane/src/hurricane/Warning.cpp index 3683ffd2..1a30bba3 100644 --- a/hurricane/src/hurricane/Warning.cpp +++ b/hurricane/src/hurricane/Warning.cpp @@ -4,7 +4,7 @@ // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // **************************************************************************************************** -#include "Warning.h" +#include "hurricane/Warning.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/BasicLayer.h b/hurricane/src/hurricane/hurricane/BasicLayer.h similarity index 98% rename from hurricane/src/hurricane/BasicLayer.h rename to hurricane/src/hurricane/hurricane/BasicLayer.h index 80fd7630..62261c2a 100644 --- a/hurricane/src/hurricane/BasicLayer.h +++ b/hurricane/src/hurricane/hurricane/BasicLayer.h @@ -7,9 +7,9 @@ #ifndef HURRICANE_BASIC_LAYER #define HURRICANE_BASIC_LAYER -#include "Layer.h" -#include "BasicLayers.h" -#include "Box.h" +#include "hurricane/Layer.h" +#include "hurricane/BasicLayers.h" +#include "hurricane/Box.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/BasicLayers.h b/hurricane/src/hurricane/hurricane/BasicLayers.h similarity index 98% rename from hurricane/src/hurricane/BasicLayers.h rename to hurricane/src/hurricane/hurricane/BasicLayers.h index d9f46392..940fe518 100644 --- a/hurricane/src/hurricane/BasicLayers.h +++ b/hurricane/src/hurricane/hurricane/BasicLayers.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_BASIC_LAYERS #define HURRICANE_BASIC_LAYERS -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Box.h b/hurricane/src/hurricane/hurricane/Box.h similarity index 99% rename from hurricane/src/hurricane/Box.h rename to hurricane/src/hurricane/hurricane/Box.h index b512f613..e3c66b2a 100644 --- a/hurricane/src/hurricane/Box.h +++ b/hurricane/src/hurricane/hurricane/Box.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_BOX #define HURRICANE_BOX -#include "Point.h" +#include "hurricane/Point.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Boxes.h b/hurricane/src/hurricane/hurricane/Boxes.h similarity index 97% rename from hurricane/src/hurricane/Boxes.h rename to hurricane/src/hurricane/hurricane/Boxes.h index f9c12248..b45c1c81 100644 --- a/hurricane/src/hurricane/Boxes.h +++ b/hurricane/src/hurricane/hurricane/Boxes.h @@ -7,8 +7,8 @@ #ifndef HURRICANE_BOXES #define HURRICANE_BOXES -#include "Collection.h" -#include "Box.h" +#include "hurricane/Collection.h" +#include "hurricane/Box.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Cell.h b/hurricane/src/hurricane/hurricane/Cell.h similarity index 94% rename from hurricane/src/hurricane/Cell.h rename to hurricane/src/hurricane/hurricane/Cell.h index 53e4efdb..ddea259a 100644 --- a/hurricane/src/hurricane/Cell.h +++ b/hurricane/src/hurricane/hurricane/Cell.h @@ -7,25 +7,25 @@ #ifndef HURRICANE_CELL #define HURRICANE_CELL -#include "Pathes.h" -#include "Entity.h" -#include "Cells.h" -#include "Instance.h" -#include "DeepNet.h" -#include "Pin.h" -#include "Pins.h" -#include "Slices.h" -#include "Rubbers.h" -#include "Markers.h" -#include "Marker.h" -#include "Reference.h" -#include "Components.h" -#include "Occurrences.h" -#include "Transformation.h" -#include "Layer.h" -#include "QuadTree.h" -#include "IntrusiveMap.h" -#include "IntrusiveSet.h" +#include "hurricane/Pathes.h" +#include "hurricane/Entity.h" +#include "hurricane/Cells.h" +#include "hurricane/Instance.h" +#include "hurricane/DeepNet.h" +#include "hurricane/Pin.h" +#include "hurricane/Pins.h" +#include "hurricane/Slices.h" +#include "hurricane/Rubbers.h" +#include "hurricane/Markers.h" +#include "hurricane/Marker.h" +#include "hurricane/Reference.h" +#include "hurricane/Components.h" +#include "hurricane/Occurrences.h" +#include "hurricane/Transformation.h" +#include "hurricane/Layer.h" +#include "hurricane/QuadTree.h" +#include "hurricane/IntrusiveMap.h" +#include "hurricane/IntrusiveSet.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Cells.h b/hurricane/src/hurricane/hurricane/Cells.h similarity index 98% rename from hurricane/src/hurricane/Cells.h rename to hurricane/src/hurricane/hurricane/Cells.h index ec560b92..40ba5b5d 100644 --- a/hurricane/src/hurricane/Cells.h +++ b/hurricane/src/hurricane/hurricane/Cells.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_CELLS #define HURRICANE_CELLS -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Collection.h b/hurricane/src/hurricane/hurricane/Collection.h similarity index 98% rename from hurricane/src/hurricane/Collection.h rename to hurricane/src/hurricane/hurricane/Collection.h index c5cba7b6..a420b088 100644 --- a/hurricane/src/hurricane/Collection.h +++ b/hurricane/src/hurricane/hurricane/Collection.h @@ -8,8 +8,8 @@ #ifndef HURRICANE_COLLECTION #define HURRICANE_COLLECTION -#include "Locator.h" -#include "Filter.h" +#include "hurricane/Locator.h" +#include "hurricane/Filter.h" namespace Hurricane { @@ -824,11 +824,11 @@ template } // End of Hurricane namespace. -#include "MultisetCollection.h" -#include "SetCollection.h" -#include "MapCollection.h" -#include "ListCollection.h" -#include "VectorCollection.h" +#include "hurricane/MultisetCollection.h" +#include "hurricane/SetCollection.h" +#include "hurricane/MapCollection.h" +#include "hurricane/ListCollection.h" +#include "hurricane/VectorCollection.h" #endif // HURRICANE_COLLECTION diff --git a/hurricane/src/hurricane/Commons.h b/hurricane/src/hurricane/hurricane/Commons.h similarity index 98% rename from hurricane/src/hurricane/Commons.h rename to hurricane/src/hurricane/hurricane/Commons.h index 9d5a52fb..f24f9be0 100644 --- a/hurricane/src/hurricane/Commons.h +++ b/hurricane/src/hurricane/hurricane/Commons.h @@ -129,7 +129,7 @@ using namespace std; // Note: we are outside the Hurricane namespace. -#include "SlotAdapter.h" +#include "hurricane/SlotAdapter.h" @@ -159,7 +159,7 @@ bool Scan ( const string& s, unsigned short& redValue // Note: Record & Tabulation are not templates, so they can be defined // early. -#include "Tabulation.h" +#include "hurricane/Tabulation.h" diff --git a/hurricane/src/hurricane/Component.h b/hurricane/src/hurricane/hurricane/Component.h similarity index 95% rename from hurricane/src/hurricane/Component.h rename to hurricane/src/hurricane/hurricane/Component.h index 9a5126c8..b8c0af75 100644 --- a/hurricane/src/hurricane/Component.h +++ b/hurricane/src/hurricane/hurricane/Component.h @@ -7,11 +7,11 @@ #ifndef HURRICANE_COMPONENT #define HURRICANE_COMPONENT -#include "Go.h" -#include "Components.h" -#include "Hook.h" -#include "Hooks.h" -#include "Interval.h" +#include "hurricane/Go.h" +#include "hurricane/Components.h" +#include "hurricane/Hook.h" +#include "hurricane/Hooks.h" +#include "hurricane/Interval.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Components.h b/hurricane/src/hurricane/hurricane/Components.h similarity index 98% rename from hurricane/src/hurricane/Components.h rename to hurricane/src/hurricane/hurricane/Components.h index 40bfbfb9..b0f85426 100644 --- a/hurricane/src/hurricane/Components.h +++ b/hurricane/src/hurricane/hurricane/Components.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_COMPONENTS #define HURRICANE_COMPONENTS -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/CompositeLayer.h b/hurricane/src/hurricane/hurricane/CompositeLayer.h similarity index 98% rename from hurricane/src/hurricane/CompositeLayer.h rename to hurricane/src/hurricane/hurricane/CompositeLayer.h index 3cd227cd..a7a3bf21 100644 --- a/hurricane/src/hurricane/CompositeLayer.h +++ b/hurricane/src/hurricane/hurricane/CompositeLayer.h @@ -7,8 +7,8 @@ #ifndef HURRICANE_COMPOSITE_LAYER #define HURRICANE_COMPOSITE_LAYER -#include "Layer.h" -#include "CompositeLayers.h" +#include "hurricane/Layer.h" +#include "hurricane/CompositeLayers.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/CompositeLayers.h b/hurricane/src/hurricane/hurricane/CompositeLayers.h similarity index 98% rename from hurricane/src/hurricane/CompositeLayers.h rename to hurricane/src/hurricane/hurricane/CompositeLayers.h index a6510845..e93e1219 100644 --- a/hurricane/src/hurricane/CompositeLayers.h +++ b/hurricane/src/hurricane/hurricane/CompositeLayers.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_COMPOSITE_LAYERS #define HURRICANE_COMPOSITE_LAYERS -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Contact.h b/hurricane/src/hurricane/hurricane/Contact.h similarity index 98% rename from hurricane/src/hurricane/Contact.h rename to hurricane/src/hurricane/hurricane/Contact.h index b853f5a6..de8d8e61 100644 --- a/hurricane/src/hurricane/Contact.h +++ b/hurricane/src/hurricane/hurricane/Contact.h @@ -7,8 +7,8 @@ #ifndef HURRICANE_CONTACT #define HURRICANE_CONTACT -#include "Component.h" -#include "Contacts.h" +#include "hurricane/Component.h" +#include "hurricane/Contacts.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Contacts.h b/hurricane/src/hurricane/hurricane/Contacts.h similarity index 98% rename from hurricane/src/hurricane/Contacts.h rename to hurricane/src/hurricane/hurricane/Contacts.h index e7747aa7..5f63d6b6 100644 --- a/hurricane/src/hurricane/Contacts.h +++ b/hurricane/src/hurricane/hurricane/Contacts.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_CONTACTS #define HURRICANE_CONTACTS -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/DBo.h b/hurricane/src/hurricane/hurricane/DBo.h similarity index 96% rename from hurricane/src/hurricane/DBo.h rename to hurricane/src/hurricane/hurricane/DBo.h index df3f9fd6..b17ac876 100644 --- a/hurricane/src/hurricane/DBo.h +++ b/hurricane/src/hurricane/hurricane/DBo.h @@ -7,9 +7,9 @@ #ifndef HURRICANE_DBO #define HURRICANE_DBO -#include "DBos.h" -#include "Name.h" -#include "Property.h" +#include "hurricane/DBos.h" +#include "hurricane/Name.h" +#include "hurricane/Property.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/DBos.h b/hurricane/src/hurricane/hurricane/DBos.h similarity index 98% rename from hurricane/src/hurricane/DBos.h rename to hurricane/src/hurricane/hurricane/DBos.h index 001ba4d7..7d215590 100644 --- a/hurricane/src/hurricane/DBos.h +++ b/hurricane/src/hurricane/hurricane/DBos.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_DBOS #define HURRICANE_DBOS -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/DRCError.h b/hurricane/src/hurricane/hurricane/DRCError.h similarity index 98% rename from hurricane/src/hurricane/DRCError.h rename to hurricane/src/hurricane/hurricane/DRCError.h index a9e7fed0..41ce2278 100644 --- a/hurricane/src/hurricane/DRCError.h +++ b/hurricane/src/hurricane/hurricane/DRCError.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_DRCERROR #define HURRICANE_DRCERROR -#include "Marker.h" +#include "hurricane/Marker.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/DataBase.h b/hurricane/src/hurricane/hurricane/DataBase.h similarity index 97% rename from hurricane/src/hurricane/DataBase.h rename to hurricane/src/hurricane/hurricane/DataBase.h index 32c48b49..07565025 100644 --- a/hurricane/src/hurricane/DataBase.h +++ b/hurricane/src/hurricane/hurricane/DataBase.h @@ -7,8 +7,8 @@ #ifndef HURRICANE_DATA_BASE #define HURRICANE_DATA_BASE -#include "DBo.h" -#include "Unit.h" +#include "hurricane/DBo.h" +#include "hurricane/Unit.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/DeepNet.h b/hurricane/src/hurricane/hurricane/DeepNet.h similarity index 97% rename from hurricane/src/hurricane/DeepNet.h rename to hurricane/src/hurricane/hurricane/DeepNet.h index 959626e8..6ba4e479 100644 --- a/hurricane/src/hurricane/DeepNet.h +++ b/hurricane/src/hurricane/hurricane/DeepNet.h @@ -53,9 +53,9 @@ # ifndef __HURRICANE_DEEPNET__ # define __HURRICANE_DEEPNET__ -# include "Net.h" -# include "HyperNet.h" -# include "Occurrence.h" +#include "hurricane/Net.h" +#include "hurricane/HyperNet.h" +#include "hurricane/Occurrence.h" diff --git a/hurricane/src/hurricane/DisplaySlot.h b/hurricane/src/hurricane/hurricane/DisplaySlot.h similarity index 96% rename from hurricane/src/hurricane/DisplaySlot.h rename to hurricane/src/hurricane/hurricane/DisplaySlot.h index 5a26bd5f..10238dda 100644 --- a/hurricane/src/hurricane/DisplaySlot.h +++ b/hurricane/src/hurricane/hurricane/DisplaySlot.h @@ -11,9 +11,9 @@ #ifndef HURRICANE_DISPLAY_SLOT #define HURRICANE_DISPLAY_SLOT -#include "QuadTree.h" -#include "UserGos.h" -#include "DisplaySlots.h" +#include "hurricane/QuadTree.h" +#include "hurricane/UserGos.h" +#include "hurricane/DisplaySlots.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/DisplaySlots.h b/hurricane/src/hurricane/hurricane/DisplaySlots.h similarity index 98% rename from hurricane/src/hurricane/DisplaySlots.h rename to hurricane/src/hurricane/hurricane/DisplaySlots.h index 44e8f127..1831d119 100644 --- a/hurricane/src/hurricane/DisplaySlots.h +++ b/hurricane/src/hurricane/hurricane/DisplaySlots.h @@ -11,7 +11,7 @@ #ifndef HURRICANE_DISPLAY_SLOTS #define HURRICANE_DISPLAY_SLOTS -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Entities.h b/hurricane/src/hurricane/hurricane/Entities.h similarity index 98% rename from hurricane/src/hurricane/Entities.h rename to hurricane/src/hurricane/hurricane/Entities.h index 2dde9fda..75f6030a 100644 --- a/hurricane/src/hurricane/Entities.h +++ b/hurricane/src/hurricane/hurricane/Entities.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_ENTITIES #define HURRICANE_ENTITIES -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Entity.h b/hurricane/src/hurricane/hurricane/Entity.h similarity index 94% rename from hurricane/src/hurricane/Entity.h rename to hurricane/src/hurricane/hurricane/Entity.h index 2e175345..9635b799 100644 --- a/hurricane/src/hurricane/Entity.h +++ b/hurricane/src/hurricane/hurricane/Entity.h @@ -7,9 +7,9 @@ #ifndef HURRICANE_ENTITY #define HURRICANE_ENTITY -#include "DBo.h" -#include "Entities.h" -#include "Box.h" +#include "hurricane/DBo.h" +#include "hurricane/Entities.h" +#include "hurricane/Box.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Error.h b/hurricane/src/hurricane/hurricane/Error.h similarity index 98% rename from hurricane/src/hurricane/Error.h rename to hurricane/src/hurricane/hurricane/Error.h index 7d83f007..b62e11e3 100644 --- a/hurricane/src/hurricane/Error.h +++ b/hurricane/src/hurricane/hurricane/Error.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_ERROR #define HURRICANE_ERROR -#include "Exception.h" +#include "hurricane/Exception.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Exception.h b/hurricane/src/hurricane/hurricane/Exception.h similarity index 98% rename from hurricane/src/hurricane/Exception.h rename to hurricane/src/hurricane/hurricane/Exception.h index c9b37957..2f029102 100644 --- a/hurricane/src/hurricane/Exception.h +++ b/hurricane/src/hurricane/hurricane/Exception.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_EXCEPTION #define HURRICANE_EXCEPTION -#include "Commons.h" +#include "hurricane/Commons.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Filter.h b/hurricane/src/hurricane/hurricane/Filter.h similarity index 99% rename from hurricane/src/hurricane/Filter.h rename to hurricane/src/hurricane/hurricane/Filter.h index 20cf3a54..2c1f5e3d 100644 --- a/hurricane/src/hurricane/Filter.h +++ b/hurricane/src/hurricane/hurricane/Filter.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_FILTER #define HURRICANE_FILTER -#include "Commons.h" +#include "hurricane/Commons.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Go.h b/hurricane/src/hurricane/hurricane/Go.h similarity index 96% rename from hurricane/src/hurricane/Go.h rename to hurricane/src/hurricane/hurricane/Go.h index 30224555..57336391 100644 --- a/hurricane/src/hurricane/Go.h +++ b/hurricane/src/hurricane/hurricane/Go.h @@ -7,9 +7,9 @@ #ifndef HURRICANE_GO #define HURRICANE_GO -#include "Entity.h" -#include "Gos.h" -#include "Transformation.h" +#include "hurricane/Entity.h" +#include "hurricane/Gos.h" +#include "hurricane/Transformation.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Gos.h b/hurricane/src/hurricane/hurricane/Gos.h similarity index 98% rename from hurricane/src/hurricane/Gos.h rename to hurricane/src/hurricane/hurricane/Gos.h index 9b5b7ee4..706c4c78 100644 --- a/hurricane/src/hurricane/Gos.h +++ b/hurricane/src/hurricane/hurricane/Gos.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_GOS #define HURRICANE_GOS -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Hook.h b/hurricane/src/hurricane/hurricane/Hook.h similarity index 98% rename from hurricane/src/hurricane/Hook.h rename to hurricane/src/hurricane/hurricane/Hook.h index 97f4e767..1dba6088 100644 --- a/hurricane/src/hurricane/Hook.h +++ b/hurricane/src/hurricane/hurricane/Hook.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_HOOK #define HURRICANE_HOOK -#include "Hooks.h" +#include "hurricane/Hooks.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Hooks.h b/hurricane/src/hurricane/hurricane/Hooks.h similarity index 98% rename from hurricane/src/hurricane/Hooks.h rename to hurricane/src/hurricane/hurricane/Hooks.h index 144f8bad..f2d49aa7 100644 --- a/hurricane/src/hurricane/Hooks.h +++ b/hurricane/src/hurricane/hurricane/Hooks.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_HOOKS #define HURRICANE_HOOKS -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Horizontal.h b/hurricane/src/hurricane/hurricane/Horizontal.h similarity index 97% rename from hurricane/src/hurricane/Horizontal.h rename to hurricane/src/hurricane/hurricane/Horizontal.h index 3579de76..e7c4e260 100644 --- a/hurricane/src/hurricane/Horizontal.h +++ b/hurricane/src/hurricane/hurricane/Horizontal.h @@ -7,8 +7,8 @@ #ifndef HURRICANE_HORIZONTAL #define HURRICANE_HORIZONTAL -#include "Segment.h" -#include "Horizontals.h" +#include "hurricane/Segment.h" +#include "hurricane/Horizontals.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Horizontals.h b/hurricane/src/hurricane/hurricane/Horizontals.h similarity index 98% rename from hurricane/src/hurricane/Horizontals.h rename to hurricane/src/hurricane/hurricane/Horizontals.h index e1ba4820..1802ef2a 100644 --- a/hurricane/src/hurricane/Horizontals.h +++ b/hurricane/src/hurricane/hurricane/Horizontals.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_HORIZONTALS #define HURRICANE_HORIZONTALS -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/HyperNet.h b/hurricane/src/hurricane/hurricane/HyperNet.h similarity index 98% rename from hurricane/src/hurricane/HyperNet.h rename to hurricane/src/hurricane/hurricane/HyperNet.h index 08d4afd9..938b8327 100644 --- a/hurricane/src/hurricane/HyperNet.h +++ b/hurricane/src/hurricane/hurricane/HyperNet.h @@ -8,7 +8,7 @@ #ifndef HURRICANE_HYPER_NET #define HURRICANE_HYPER_NET -#include "Occurrences.h" +#include "hurricane/Occurrences.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Instance.h b/hurricane/src/hurricane/hurricane/Instance.h similarity index 98% rename from hurricane/src/hurricane/Instance.h rename to hurricane/src/hurricane/hurricane/Instance.h index 328ed411..fb3ff5f3 100644 --- a/hurricane/src/hurricane/Instance.h +++ b/hurricane/src/hurricane/hurricane/Instance.h @@ -7,10 +7,10 @@ #ifndef HURRICANE_INSTANCE #define HURRICANE_INSTANCE -#include "Go.h" -#include "Plug.h" -#include "SharedPath.h" -#include "IntrusiveMap.h" +#include "hurricane/Go.h" +#include "hurricane/Plug.h" +#include "hurricane/SharedPath.h" +#include "hurricane/IntrusiveMap.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Instances.h b/hurricane/src/hurricane/hurricane/Instances.h similarity index 98% rename from hurricane/src/hurricane/Instances.h rename to hurricane/src/hurricane/hurricane/Instances.h index 20801718..61820126 100644 --- a/hurricane/src/hurricane/Instances.h +++ b/hurricane/src/hurricane/hurricane/Instances.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_INSTANCES #define HURRICANE_INSTANCES -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Interruption.h b/hurricane/src/hurricane/hurricane/Interruption.h similarity index 98% rename from hurricane/src/hurricane/Interruption.h rename to hurricane/src/hurricane/hurricane/Interruption.h index d4d17372..1b9dfa2b 100644 --- a/hurricane/src/hurricane/Interruption.h +++ b/hurricane/src/hurricane/hurricane/Interruption.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_INTERRUPTION #define HURRICANE_INTERRUPTION -#include "Exception.h" +#include "hurricane/Exception.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Interval.h b/hurricane/src/hurricane/hurricane/Interval.h similarity index 99% rename from hurricane/src/hurricane/Interval.h rename to hurricane/src/hurricane/hurricane/Interval.h index aabf008d..bc30bd62 100644 --- a/hurricane/src/hurricane/Interval.h +++ b/hurricane/src/hurricane/hurricane/Interval.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_INTERVAL #define HURRICANE_INTERVAL -#include "Unit.h" +#include "hurricane/Unit.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Intervals.h b/hurricane/src/hurricane/hurricane/Intervals.h similarity index 96% rename from hurricane/src/hurricane/Intervals.h rename to hurricane/src/hurricane/hurricane/Intervals.h index 309358da..88cb58c5 100644 --- a/hurricane/src/hurricane/Intervals.h +++ b/hurricane/src/hurricane/hurricane/Intervals.h @@ -7,8 +7,8 @@ #ifndef HURRICANE_INTERVALS #define HURRICANE_INTERVALS -#include "Collection.h" -#include "Interval.h" +#include "hurricane/Collection.h" +#include "hurricane/Interval.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/IntrusiveMap.h b/hurricane/src/hurricane/hurricane/IntrusiveMap.h similarity index 99% rename from hurricane/src/hurricane/IntrusiveMap.h rename to hurricane/src/hurricane/hurricane/IntrusiveMap.h index d5331986..aa252ebd 100644 --- a/hurricane/src/hurricane/IntrusiveMap.h +++ b/hurricane/src/hurricane/hurricane/IntrusiveMap.h @@ -9,8 +9,8 @@ #include -#include "Collection.h" -#include "Error.h" // AD +#include "hurricane/Collection.h" +#include "hurricane/Error.h" // AD namespace Hurricane { diff --git a/hurricane/src/hurricane/IntrusiveSet.h b/hurricane/src/hurricane/hurricane/IntrusiveSet.h similarity index 99% rename from hurricane/src/hurricane/IntrusiveSet.h rename to hurricane/src/hurricane/hurricane/IntrusiveSet.h index 8337205f..85836708 100644 --- a/hurricane/src/hurricane/IntrusiveSet.h +++ b/hurricane/src/hurricane/hurricane/IntrusiveSet.h @@ -9,8 +9,8 @@ #include -#include "Collection.h" -#include "Error.h" // AD +#include "hurricane/Collection.h" +#include "hurricane/Error.h" // AD namespace Hurricane { diff --git a/hurricane/src/hurricane/Layer.h b/hurricane/src/hurricane/hurricane/Layer.h similarity index 96% rename from hurricane/src/hurricane/Layer.h rename to hurricane/src/hurricane/hurricane/Layer.h index 21bbe0ab..50a922f4 100644 --- a/hurricane/src/hurricane/Layer.h +++ b/hurricane/src/hurricane/hurricane/Layer.h @@ -7,10 +7,10 @@ #ifndef HURRICANE_LAYER #define HURRICANE_LAYER -#include "DBo.h" -#include "Layers.h" -#include "Unit.h" -#include "BasicLayers.h" +#include "hurricane/DBo.h" +#include "hurricane/Layers.h" +#include "hurricane/Unit.h" +#include "hurricane/BasicLayers.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Layers.h b/hurricane/src/hurricane/hurricane/Layers.h similarity index 98% rename from hurricane/src/hurricane/Layers.h rename to hurricane/src/hurricane/hurricane/Layers.h index 7cd3e50f..f54be862 100644 --- a/hurricane/src/hurricane/Layers.h +++ b/hurricane/src/hurricane/hurricane/Layers.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_LAYERS #define HURRICANE_LAYERS -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Libraries.h b/hurricane/src/hurricane/hurricane/Libraries.h similarity index 98% rename from hurricane/src/hurricane/Libraries.h rename to hurricane/src/hurricane/hurricane/Libraries.h index b25a6cd0..23340841 100644 --- a/hurricane/src/hurricane/Libraries.h +++ b/hurricane/src/hurricane/hurricane/Libraries.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_LIBRARIES #define HURRICANE_LIBRARIES -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Library.h b/hurricane/src/hurricane/hurricane/Library.h similarity index 96% rename from hurricane/src/hurricane/Library.h rename to hurricane/src/hurricane/hurricane/Library.h index be260d21..5fa78975 100644 --- a/hurricane/src/hurricane/Library.h +++ b/hurricane/src/hurricane/hurricane/Library.h @@ -7,10 +7,10 @@ #ifndef HURRICANE_LIBRARY #define HURRICANE_LIBRARY -#include "DBo.h" -#include "Libraries.h" -#include "Cell.h" -#include "IntrusiveMap.h" +#include "hurricane/DBo.h" +#include "hurricane/Libraries.h" +#include "hurricane/Cell.h" +#include "hurricane/IntrusiveMap.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/ListCollection.h b/hurricane/src/hurricane/hurricane/ListCollection.h similarity index 99% rename from hurricane/src/hurricane/ListCollection.h rename to hurricane/src/hurricane/hurricane/ListCollection.h index 714a0135..bdd5c883 100644 --- a/hurricane/src/hurricane/ListCollection.h +++ b/hurricane/src/hurricane/hurricane/ListCollection.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_LIST_COLLECTION #define HURRICANE_LIST_COLLECTION -#include "Commons.h" +#include "hurricane/Commons.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Locator.h b/hurricane/src/hurricane/hurricane/Locator.h similarity index 99% rename from hurricane/src/hurricane/Locator.h rename to hurricane/src/hurricane/hurricane/Locator.h index b71a38bf..92a22ce7 100644 --- a/hurricane/src/hurricane/Locator.h +++ b/hurricane/src/hurricane/hurricane/Locator.h @@ -8,7 +8,7 @@ #ifndef HURRICANE_LOCATOR #define HURRICANE_LOCATOR -#include "Commons.h" +#include "hurricane/Commons.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/MapCollection.h b/hurricane/src/hurricane/hurricane/MapCollection.h similarity index 99% rename from hurricane/src/hurricane/MapCollection.h rename to hurricane/src/hurricane/hurricane/MapCollection.h index 20dff93b..11008343 100644 --- a/hurricane/src/hurricane/MapCollection.h +++ b/hurricane/src/hurricane/hurricane/MapCollection.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_MAP_COLLECTION #define HURRICANE_MAP_COLLECTION -#include "Commons.h" +#include "hurricane/Commons.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Marker.h b/hurricane/src/hurricane/hurricane/Marker.h similarity index 98% rename from hurricane/src/hurricane/Marker.h rename to hurricane/src/hurricane/hurricane/Marker.h index 17351611..4460aec0 100644 --- a/hurricane/src/hurricane/Marker.h +++ b/hurricane/src/hurricane/hurricane/Marker.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_MARKER #define HURRICANE_MARKER -#include "Go.h" +#include "hurricane/Go.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Markers.h b/hurricane/src/hurricane/hurricane/Markers.h similarity index 98% rename from hurricane/src/hurricane/Markers.h rename to hurricane/src/hurricane/hurricane/Markers.h index 25e03ce4..7046ecb8 100644 --- a/hurricane/src/hurricane/Markers.h +++ b/hurricane/src/hurricane/hurricane/Markers.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_MARKERS #define HURRICANE_MARKERS -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/MultisetCollection.h b/hurricane/src/hurricane/hurricane/MultisetCollection.h similarity index 98% rename from hurricane/src/hurricane/MultisetCollection.h rename to hurricane/src/hurricane/hurricane/MultisetCollection.h index 2e8e1f18..9721b471 100644 --- a/hurricane/src/hurricane/MultisetCollection.h +++ b/hurricane/src/hurricane/hurricane/MultisetCollection.h @@ -7,11 +7,11 @@ #ifndef HURRICANE_MULTISET_COLLECTION #define HURRICANE_MULTISET_COLLECTION -#include "Commons.h" +#include "hurricane/Commons.h" -#include "Tabulation.h" -#include "Record.h" -#include "Slot.h" +#include "hurricane/Tabulation.h" +#include "hurricane/Record.h" +#include "hurricane/Slot.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Name.h b/hurricane/src/hurricane/hurricane/Name.h similarity index 97% rename from hurricane/src/hurricane/Name.h rename to hurricane/src/hurricane/hurricane/Name.h index 5bb64420..3da93322 100644 --- a/hurricane/src/hurricane/Name.h +++ b/hurricane/src/hurricane/hurricane/Name.h @@ -7,8 +7,8 @@ #ifndef HURRICANE_NAME #define HURRICANE_NAME -#include "Commons.h" -#include "Names.h" +#include "hurricane/Commons.h" +#include "hurricane/Names.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Names.h b/hurricane/src/hurricane/hurricane/Names.h similarity index 97% rename from hurricane/src/hurricane/Names.h rename to hurricane/src/hurricane/hurricane/Names.h index 476672aa..0d589885 100644 --- a/hurricane/src/hurricane/Names.h +++ b/hurricane/src/hurricane/hurricane/Names.h @@ -6,7 +6,7 @@ // #define HURRICANE_NAMES -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Net.h b/hurricane/src/hurricane/hurricane/Net.h similarity index 95% rename from hurricane/src/hurricane/Net.h rename to hurricane/src/hurricane/hurricane/Net.h index e402ab5c..773f5266 100644 --- a/hurricane/src/hurricane/Net.h +++ b/hurricane/src/hurricane/hurricane/Net.h @@ -7,21 +7,21 @@ #ifndef HURRICANE_NET #define HURRICANE_NET -#include "Entity.h" -#include "Nets.h" -#include "Component.h" -#include "Rubbers.h" -#include "Rubber.h" -#include "RoutingPads.h" -#include "Plugs.h" -#include "Pins.h" -#include "Contacts.h" -#include "Segments.h" -#include "Verticals.h" -#include "Horizontals.h" -#include "Pads.h" -#include "IntrusiveSet.h" -#include "Path.h" +#include "hurricane/Entity.h" +#include "hurricane/Nets.h" +#include "hurricane/Component.h" +#include "hurricane/Rubbers.h" +#include "hurricane/Rubber.h" +#include "hurricane/RoutingPads.h" +#include "hurricane/Plugs.h" +#include "hurricane/Pins.h" +#include "hurricane/Contacts.h" +#include "hurricane/Segments.h" +#include "hurricane/Verticals.h" +#include "hurricane/Horizontals.h" +#include "hurricane/Pads.h" +#include "hurricane/IntrusiveSet.h" +#include "hurricane/Path.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/NetExternalComponents.h b/hurricane/src/hurricane/hurricane/NetExternalComponents.h similarity index 95% rename from hurricane/src/hurricane/NetExternalComponents.h rename to hurricane/src/hurricane/hurricane/NetExternalComponents.h index 6eb50121..fba50ec4 100644 --- a/hurricane/src/hurricane/NetExternalComponents.h +++ b/hurricane/src/hurricane/hurricane/NetExternalComponents.h @@ -11,7 +11,7 @@ #ifndef HURRICANE_NET_EXTERNAL_COMPONENTS #define HURRICANE_NET_EXTERNAL_COMPONENTS -#include "Component.h" +#include "hurricane/Component.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Nets.h b/hurricane/src/hurricane/hurricane/Nets.h similarity index 98% rename from hurricane/src/hurricane/Nets.h rename to hurricane/src/hurricane/hurricane/Nets.h index ad6520ec..805d528f 100644 --- a/hurricane/src/hurricane/Nets.h +++ b/hurricane/src/hurricane/hurricane/Nets.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_NETS #define HURRICANE_NETS -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Occurrence.h b/hurricane/src/hurricane/hurricane/Occurrence.h similarity index 96% rename from hurricane/src/hurricane/Occurrence.h rename to hurricane/src/hurricane/hurricane/Occurrence.h index 26507596..655467f0 100644 --- a/hurricane/src/hurricane/Occurrence.h +++ b/hurricane/src/hurricane/hurricane/Occurrence.h @@ -7,9 +7,9 @@ #ifndef HURRICANE_OCCURENCE #define HURRICANE_OCCURENCE -#include "Path.h" -#include "Name.h" -#include "Properties.h" +#include "hurricane/Path.h" +#include "hurricane/Name.h" +#include "hurricane/Properties.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Occurrences.h b/hurricane/src/hurricane/hurricane/Occurrences.h similarity index 96% rename from hurricane/src/hurricane/Occurrences.h rename to hurricane/src/hurricane/hurricane/Occurrences.h index 6fdeb90a..6d4c61bc 100644 --- a/hurricane/src/hurricane/Occurrences.h +++ b/hurricane/src/hurricane/hurricane/Occurrences.h @@ -7,8 +7,8 @@ #ifndef HURRICANE_OCCURENCES #define HURRICANE_OCCURENCES -#include "Collection.h" -#include "Occurrence.h" +#include "hurricane/Collection.h" +#include "hurricane/Occurrence.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Pad.h b/hurricane/src/hurricane/hurricane/Pad.h similarity index 97% rename from hurricane/src/hurricane/Pad.h rename to hurricane/src/hurricane/hurricane/Pad.h index 36978c5a..fbe99df7 100644 --- a/hurricane/src/hurricane/Pad.h +++ b/hurricane/src/hurricane/hurricane/Pad.h @@ -7,8 +7,8 @@ #ifndef HURRICANE_PAD #define HURRICANE_PAD -#include "Component.h" -#include "Pads.h" +#include "hurricane/Component.h" +#include "hurricane/Pads.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Pads.h b/hurricane/src/hurricane/hurricane/Pads.h similarity index 98% rename from hurricane/src/hurricane/Pads.h rename to hurricane/src/hurricane/hurricane/Pads.h index b7cabcbf..def75072 100644 --- a/hurricane/src/hurricane/Pads.h +++ b/hurricane/src/hurricane/hurricane/Pads.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_PADS #define HURRICANE_PADS -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Path.h b/hurricane/src/hurricane/hurricane/Path.h similarity index 97% rename from hurricane/src/hurricane/Path.h rename to hurricane/src/hurricane/hurricane/Path.h index abedbe99..ed583ce2 100644 --- a/hurricane/src/hurricane/Path.h +++ b/hurricane/src/hurricane/hurricane/Path.h @@ -7,8 +7,8 @@ #ifndef HURRICANE_PATH #define HURRICANE_PATH -#include "Instances.h" -#include "Transformation.h" +#include "hurricane/Instances.h" +#include "hurricane/Transformation.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Pathes.h b/hurricane/src/hurricane/hurricane/Pathes.h similarity index 96% rename from hurricane/src/hurricane/Pathes.h rename to hurricane/src/hurricane/hurricane/Pathes.h index e4766333..ee04ed60 100644 --- a/hurricane/src/hurricane/Pathes.h +++ b/hurricane/src/hurricane/hurricane/Pathes.h @@ -7,8 +7,8 @@ #ifndef HURRICANE_PATHES #define HURRICANE_PATHES -#include "Collection.h" -#include "Path.h" +#include "hurricane/Collection.h" +#include "hurricane/Path.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Pin.h b/hurricane/src/hurricane/hurricane/Pin.h similarity index 98% rename from hurricane/src/hurricane/Pin.h rename to hurricane/src/hurricane/hurricane/Pin.h index 7f752f15..a0c64f89 100644 --- a/hurricane/src/hurricane/Pin.h +++ b/hurricane/src/hurricane/hurricane/Pin.h @@ -11,8 +11,8 @@ #ifndef HURRICANE_PIN #define HURRICANE_PIN -#include "Contact.h" -#include "Pins.h" +#include "hurricane/Contact.h" +#include "hurricane/Pins.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Pins.h b/hurricane/src/hurricane/hurricane/Pins.h similarity index 98% rename from hurricane/src/hurricane/Pins.h rename to hurricane/src/hurricane/hurricane/Pins.h index 54079cfd..9909413f 100644 --- a/hurricane/src/hurricane/Pins.h +++ b/hurricane/src/hurricane/hurricane/Pins.h @@ -11,7 +11,7 @@ #ifndef HURRICANE_PINS #define HURRICANE_PINS -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Plug.h b/hurricane/src/hurricane/hurricane/Plug.h similarity index 98% rename from hurricane/src/hurricane/Plug.h rename to hurricane/src/hurricane/hurricane/Plug.h index 4905a5ee..0d330592 100644 --- a/hurricane/src/hurricane/Plug.h +++ b/hurricane/src/hurricane/hurricane/Plug.h @@ -7,8 +7,8 @@ #ifndef HURRICANE_PLUG #define HURRICANE_PLUG -#include "Component.h" -#include "Plugs.h" +#include "hurricane/Component.h" +#include "hurricane/Plugs.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Plugs.h b/hurricane/src/hurricane/hurricane/Plugs.h similarity index 98% rename from hurricane/src/hurricane/Plugs.h rename to hurricane/src/hurricane/hurricane/Plugs.h index fcfef402..7089d57f 100644 --- a/hurricane/src/hurricane/Plugs.h +++ b/hurricane/src/hurricane/hurricane/Plugs.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_PLUGS #define HURRICANE_PLUGS -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Point.h b/hurricane/src/hurricane/hurricane/Point.h similarity index 98% rename from hurricane/src/hurricane/Point.h rename to hurricane/src/hurricane/hurricane/Point.h index 8e2937f0..d97eea8d 100644 --- a/hurricane/src/hurricane/Point.h +++ b/hurricane/src/hurricane/hurricane/Point.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_POINT #define HURRICANE_POINT -#include "Unit.h" +#include "hurricane/Unit.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Points.h b/hurricane/src/hurricane/hurricane/Points.h similarity index 96% rename from hurricane/src/hurricane/Points.h rename to hurricane/src/hurricane/hurricane/Points.h index 8939b5b4..0aca9d14 100644 --- a/hurricane/src/hurricane/Points.h +++ b/hurricane/src/hurricane/hurricane/Points.h @@ -7,8 +7,8 @@ #ifndef HURRICANE_POINTS #define HURRICANE_POINTS -#include "Collection.h" -#include "Point.h" +#include "hurricane/Collection.h" +#include "hurricane/Point.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Primitives.h b/hurricane/src/hurricane/hurricane/Primitives.h similarity index 98% rename from hurricane/src/hurricane/Primitives.h rename to hurricane/src/hurricane/hurricane/Primitives.h index db047d32..65bc3117 100644 --- a/hurricane/src/hurricane/Primitives.h +++ b/hurricane/src/hurricane/hurricane/Primitives.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_PRIMITIVES #define HURRICANE_PRIMITIVES -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Properties.h b/hurricane/src/hurricane/hurricane/Properties.h similarity index 98% rename from hurricane/src/hurricane/Properties.h rename to hurricane/src/hurricane/hurricane/Properties.h index 18369306..991ed38b 100644 --- a/hurricane/src/hurricane/Properties.h +++ b/hurricane/src/hurricane/hurricane/Properties.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_PROPERTIES #define HURRICANE_PROPERTIES -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Property.h b/hurricane/src/hurricane/hurricane/Property.h similarity index 98% rename from hurricane/src/hurricane/Property.h rename to hurricane/src/hurricane/hurricane/Property.h index 28a11003..e4c8aab5 100644 --- a/hurricane/src/hurricane/Property.h +++ b/hurricane/src/hurricane/hurricane/Property.h @@ -7,10 +7,10 @@ #ifndef HURRICANE_PROPERTY #define HURRICANE_PROPERTY -#include "Name.h" -#include "Properties.h" -#include "DBos.h" -#include "Error.h" +#include "hurricane/Name.h" +#include "hurricane/Properties.h" +#include "hurricane/DBos.h" +#include "hurricane/Error.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/QuadTree.h b/hurricane/src/hurricane/hurricane/QuadTree.h similarity index 97% rename from hurricane/src/hurricane/QuadTree.h rename to hurricane/src/hurricane/hurricane/QuadTree.h index 93dd2f7b..a435c001 100644 --- a/hurricane/src/hurricane/QuadTree.h +++ b/hurricane/src/hurricane/hurricane/QuadTree.h @@ -7,9 +7,9 @@ #ifndef HURRICANE_QUAD_TREE #define HURRICANE_QUAD_TREE -#include "Box.h" -#include "Gos.h" -#include "IntrusiveSet.h" +#include "hurricane/Box.h" +#include "hurricane/Gos.h" +#include "hurricane/IntrusiveSet.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Quark.h b/hurricane/src/hurricane/hurricane/Quark.h similarity index 95% rename from hurricane/src/hurricane/Quark.h rename to hurricane/src/hurricane/hurricane/Quark.h index 1813e901..bf23d545 100644 --- a/hurricane/src/hurricane/Quark.h +++ b/hurricane/src/hurricane/hurricane/Quark.h @@ -7,9 +7,9 @@ #ifndef HURRICANE_QUARK #define HURRICANE_QUARK -#include "DBo.h" -#include "Quarks.h" -#include "Occurrence.h" +#include "hurricane/DBo.h" +#include "hurricane/Quarks.h" +#include "hurricane/Occurrence.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Quarks.h b/hurricane/src/hurricane/hurricane/Quarks.h similarity index 98% rename from hurricane/src/hurricane/Quarks.h rename to hurricane/src/hurricane/hurricane/Quarks.h index e88721e6..4429bd4b 100644 --- a/hurricane/src/hurricane/Quarks.h +++ b/hurricane/src/hurricane/hurricane/Quarks.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_QUARKS #define HURRICANE_QUARKS -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Record.h b/hurricane/src/hurricane/hurricane/Record.h similarity index 100% rename from hurricane/src/hurricane/Record.h rename to hurricane/src/hurricane/hurricane/Record.h diff --git a/hurricane/src/hurricane/Reference.h b/hurricane/src/hurricane/hurricane/Reference.h similarity index 96% rename from hurricane/src/hurricane/Reference.h rename to hurricane/src/hurricane/hurricane/Reference.h index 239a7a98..60f6db91 100644 --- a/hurricane/src/hurricane/Reference.h +++ b/hurricane/src/hurricane/hurricane/Reference.h @@ -7,8 +7,8 @@ #ifndef HURRICANE_REFERENCE #define HURRICANE_REFERENCE -#include "Marker.h" -#include "References.h" +#include "hurricane/Marker.h" +#include "hurricane/References.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/References.h b/hurricane/src/hurricane/hurricane/References.h similarity index 98% rename from hurricane/src/hurricane/References.h rename to hurricane/src/hurricane/hurricane/References.h index f6e0b24e..50f813f9 100644 --- a/hurricane/src/hurricane/References.h +++ b/hurricane/src/hurricane/hurricane/References.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_REFERENCES #define HURRICANE_REFERENCES -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Region.h b/hurricane/src/hurricane/hurricane/Region.h similarity index 99% rename from hurricane/src/hurricane/Region.h rename to hurricane/src/hurricane/hurricane/Region.h index 613c48d5..f54ab397 100644 --- a/hurricane/src/hurricane/Region.h +++ b/hurricane/src/hurricane/hurricane/Region.h @@ -7,8 +7,8 @@ #ifndef HURRICANE_REGION #define HURRICANE_REGION -#include "Boxes.h" -#include "Intervals.h" +#include "hurricane/Boxes.h" +#include "hurricane/Intervals.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Relation.h b/hurricane/src/hurricane/hurricane/Relation.h similarity index 98% rename from hurricane/src/hurricane/Relation.h rename to hurricane/src/hurricane/hurricane/Relation.h index 025fbce4..1d8f334a 100644 --- a/hurricane/src/hurricane/Relation.h +++ b/hurricane/src/hurricane/hurricane/Relation.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_RELATION #define HURRICANE_RELATION -#include "Property.h" +#include "hurricane/Property.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/RoutingPad.h b/hurricane/src/hurricane/hurricane/RoutingPad.h similarity index 96% rename from hurricane/src/hurricane/RoutingPad.h rename to hurricane/src/hurricane/hurricane/RoutingPad.h index a4b60247..4d6a41eb 100644 --- a/hurricane/src/hurricane/RoutingPad.h +++ b/hurricane/src/hurricane/hurricane/RoutingPad.h @@ -11,9 +11,9 @@ #ifndef HURRICANE_ROUTINGPAD #define HURRICANE_ROUTINGPAD -#include "Component.h" -#include "Occurrence.h" -#include "Pin.h" +#include "hurricane/Component.h" +#include "hurricane/Occurrence.h" +#include "hurricane/Pin.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/RoutingPads.h b/hurricane/src/hurricane/hurricane/RoutingPads.h similarity index 98% rename from hurricane/src/hurricane/RoutingPads.h rename to hurricane/src/hurricane/hurricane/RoutingPads.h index ae819837..9c817bbe 100644 --- a/hurricane/src/hurricane/RoutingPads.h +++ b/hurricane/src/hurricane/hurricane/RoutingPads.h @@ -11,7 +11,7 @@ #ifndef HURRICANE_ROUTINGPADS #define HURRICANE_ROUTINGPADS -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Rubber.h b/hurricane/src/hurricane/hurricane/Rubber.h similarity index 97% rename from hurricane/src/hurricane/Rubber.h rename to hurricane/src/hurricane/hurricane/Rubber.h index fb30b2f4..1f524036 100644 --- a/hurricane/src/hurricane/Rubber.h +++ b/hurricane/src/hurricane/hurricane/Rubber.h @@ -7,9 +7,9 @@ #ifndef HURRICANE_RUBBER #define HURRICANE_RUBBER -#include "Go.h" -#include "Hooks.h" -#include "Rubbers.h" +#include "hurricane/Go.h" +#include "hurricane/Hooks.h" +#include "hurricane/Rubbers.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Rubbers.h b/hurricane/src/hurricane/hurricane/Rubbers.h similarity index 98% rename from hurricane/src/hurricane/Rubbers.h rename to hurricane/src/hurricane/hurricane/Rubbers.h index 6697d765..975c8b12 100644 --- a/hurricane/src/hurricane/Rubbers.h +++ b/hurricane/src/hurricane/hurricane/Rubbers.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_RUBBERS #define HURRICANE_RUBBERS -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Segment.h b/hurricane/src/hurricane/hurricane/Segment.h similarity index 98% rename from hurricane/src/hurricane/Segment.h rename to hurricane/src/hurricane/hurricane/Segment.h index d4e56531..dfc4c46b 100644 --- a/hurricane/src/hurricane/Segment.h +++ b/hurricane/src/hurricane/hurricane/Segment.h @@ -7,8 +7,8 @@ #ifndef HURRICANE_SEGMENT #define HURRICANE_SEGMENT -#include "Component.h" -#include "Segments.h" +#include "hurricane/Component.h" +#include "hurricane/Segments.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Segments.h b/hurricane/src/hurricane/hurricane/Segments.h similarity index 98% rename from hurricane/src/hurricane/Segments.h rename to hurricane/src/hurricane/hurricane/Segments.h index 5691e3de..a9192740 100644 --- a/hurricane/src/hurricane/Segments.h +++ b/hurricane/src/hurricane/hurricane/Segments.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_SEGMENTS #define HURRICANE_SEGMENTS -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Selectors.h b/hurricane/src/hurricane/hurricane/Selectors.h similarity index 98% rename from hurricane/src/hurricane/Selectors.h rename to hurricane/src/hurricane/hurricane/Selectors.h index b4bbfd33..c93475dc 100644 --- a/hurricane/src/hurricane/Selectors.h +++ b/hurricane/src/hurricane/hurricane/Selectors.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_SELECTORS #define HURRICANE_SELECTORS -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/SetCollection.h b/hurricane/src/hurricane/hurricane/SetCollection.h similarity index 98% rename from hurricane/src/hurricane/SetCollection.h rename to hurricane/src/hurricane/hurricane/SetCollection.h index 689a9d76..c949d3e7 100644 --- a/hurricane/src/hurricane/SetCollection.h +++ b/hurricane/src/hurricane/hurricane/SetCollection.h @@ -7,11 +7,11 @@ #ifndef HURRICANE_SET_COLLECTION #define HURRICANE_SET_COLLECTION -#include "Commons.h" +#include "hurricane/Commons.h" -#include "Tabulation.h" -#include "Record.h" -#include "Slot.h" +#include "hurricane/Tabulation.h" +#include "hurricane/Record.h" +#include "hurricane/Slot.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/SharedName.h b/hurricane/src/hurricane/hurricane/SharedName.h similarity index 98% rename from hurricane/src/hurricane/SharedName.h rename to hurricane/src/hurricane/hurricane/SharedName.h index e2ba0ea2..70ae57d7 100644 --- a/hurricane/src/hurricane/SharedName.h +++ b/hurricane/src/hurricane/hurricane/SharedName.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_SHARED_NAME #define HURRICANE_SHARED_NAME -#include "Commons.h" +#include "hurricane/Commons.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/SharedPath.h b/hurricane/src/hurricane/hurricane/SharedPath.h similarity index 95% rename from hurricane/src/hurricane/SharedPath.h rename to hurricane/src/hurricane/hurricane/SharedPath.h index 107e2b30..8e03588f 100644 --- a/hurricane/src/hurricane/SharedPath.h +++ b/hurricane/src/hurricane/hurricane/SharedPath.h @@ -7,11 +7,11 @@ #ifndef HURRICANE_SHARED_PATH #define HURRICANE_SHARED_PATH -#include "Instances.h" -#include "SharedPathes.h" -#include "Quark.h" -#include "Transformation.h" -#include "IntrusiveMap.h" +#include "hurricane/Instances.h" +#include "hurricane/SharedPathes.h" +#include "hurricane/Quark.h" +#include "hurricane/Transformation.h" +#include "hurricane/IntrusiveMap.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/SharedPathes.h b/hurricane/src/hurricane/hurricane/SharedPathes.h similarity index 98% rename from hurricane/src/hurricane/SharedPathes.h rename to hurricane/src/hurricane/hurricane/SharedPathes.h index 63b115a1..0b933656 100644 --- a/hurricane/src/hurricane/SharedPathes.h +++ b/hurricane/src/hurricane/hurricane/SharedPathes.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_SHARED_PATHES #define HURRICANE_SHARED_PATHES -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Slice.h b/hurricane/src/hurricane/hurricane/Slice.h similarity index 95% rename from hurricane/src/hurricane/Slice.h rename to hurricane/src/hurricane/hurricane/Slice.h index 3cf301cb..acdc1db1 100644 --- a/hurricane/src/hurricane/Slice.h +++ b/hurricane/src/hurricane/hurricane/Slice.h @@ -7,10 +7,10 @@ #ifndef HURRICANE_SLICE #define HURRICANE_SLICE -#include "QuadTree.h" -#include "Components.h" -#include "Markers.h" -#include "Transformation.h" +#include "hurricane/QuadTree.h" +#include "hurricane/Components.h" +#include "hurricane/Markers.h" +#include "hurricane/Transformation.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Slices.h b/hurricane/src/hurricane/hurricane/Slices.h similarity index 98% rename from hurricane/src/hurricane/Slices.h rename to hurricane/src/hurricane/hurricane/Slices.h index 10eeeba4..a748df7e 100644 --- a/hurricane/src/hurricane/Slices.h +++ b/hurricane/src/hurricane/hurricane/Slices.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_SLICES #define HURRICANE_SLICES -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Slot.h b/hurricane/src/hurricane/hurricane/Slot.h similarity index 100% rename from hurricane/src/hurricane/Slot.h rename to hurricane/src/hurricane/hurricane/Slot.h diff --git a/hurricane/src/hurricane/SlotAdapter.h b/hurricane/src/hurricane/hurricane/SlotAdapter.h similarity index 99% rename from hurricane/src/hurricane/SlotAdapter.h rename to hurricane/src/hurricane/hurricane/SlotAdapter.h index 68ed2051..102c3062 100644 --- a/hurricane/src/hurricane/SlotAdapter.h +++ b/hurricane/src/hurricane/hurricane/SlotAdapter.h @@ -602,8 +602,8 @@ template -#include "Record.h" -#include "Slot.h" +#include "hurricane/Record.h" +#include "hurricane/Slot.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Symbols.h b/hurricane/src/hurricane/hurricane/Symbols.h similarity index 98% rename from hurricane/src/hurricane/Symbols.h rename to hurricane/src/hurricane/hurricane/Symbols.h index 0d4904aa..a0f649dd 100644 --- a/hurricane/src/hurricane/Symbols.h +++ b/hurricane/src/hurricane/hurricane/Symbols.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_SYMBOLS #define HURRICANE_SYMBOLS -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Tabulation.h b/hurricane/src/hurricane/hurricane/Tabulation.h similarity index 98% rename from hurricane/src/hurricane/Tabulation.h rename to hurricane/src/hurricane/hurricane/Tabulation.h index 5dd028c8..e73e06b0 100644 --- a/hurricane/src/hurricane/Tabulation.h +++ b/hurricane/src/hurricane/hurricane/Tabulation.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_TABULATION #define HURRICANE_TABULATION -#include "Commons.h" +#include "hurricane/Commons.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Technology.h b/hurricane/src/hurricane/hurricane/Technology.h similarity index 95% rename from hurricane/src/hurricane/Technology.h rename to hurricane/src/hurricane/hurricane/Technology.h index 4657958c..730daa19 100644 --- a/hurricane/src/hurricane/Technology.h +++ b/hurricane/src/hurricane/hurricane/Technology.h @@ -7,11 +7,11 @@ #ifndef HURRICANE_TECHNOLOGY #define HURRICANE_TECHNOLOGY -#include "DBo.h" -#include "Layer.h" -#include "BasicLayers.h" -#include "CompositeLayers.h" -#include "IntrusiveMap.h" +#include "hurricane/DBo.h" +#include "hurricane/Layer.h" +#include "hurricane/BasicLayers.h" +#include "hurricane/CompositeLayers.h" +#include "hurricane/IntrusiveMap.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Timer.h b/hurricane/src/hurricane/hurricane/Timer.h similarity index 97% rename from hurricane/src/hurricane/Timer.h rename to hurricane/src/hurricane/hurricane/Timer.h index a1db5a09..094a726d 100644 --- a/hurricane/src/hurricane/Timer.h +++ b/hurricane/src/hurricane/hurricane/Timer.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_TIMER #define HURRICANE_TIMER -#include "Commons.h" +#include "hurricane/Commons.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Transformation.h b/hurricane/src/hurricane/hurricane/Transformation.h similarity index 99% rename from hurricane/src/hurricane/Transformation.h rename to hurricane/src/hurricane/hurricane/Transformation.h index 6b4f979a..706c6859 100644 --- a/hurricane/src/hurricane/Transformation.h +++ b/hurricane/src/hurricane/hurricane/Transformation.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_TRANSFORMATION #define HURRICANE_TRANSFORMATION -#include "Box.h" +#include "hurricane/Box.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Unit.h b/hurricane/src/hurricane/hurricane/Unit.h similarity index 99% rename from hurricane/src/hurricane/Unit.h rename to hurricane/src/hurricane/hurricane/Unit.h index dbdcabe7..8b36d7d4 100644 --- a/hurricane/src/hurricane/Unit.h +++ b/hurricane/src/hurricane/hurricane/Unit.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_UNIT #define HURRICANE_UNIT -#include "Commons.h" +#include "hurricane/Commons.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/UpdateSession.h b/hurricane/src/hurricane/hurricane/UpdateSession.h similarity index 98% rename from hurricane/src/hurricane/UpdateSession.h rename to hurricane/src/hurricane/hurricane/UpdateSession.h index c3943e88..846e8516 100644 --- a/hurricane/src/hurricane/UpdateSession.h +++ b/hurricane/src/hurricane/hurricane/UpdateSession.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_UPDATE_SESSION #define HURRICANE_UPDATE_SESSION -#include "Property.h" +#include "hurricane/Property.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/UserGo.h b/hurricane/src/hurricane/hurricane/UserGo.h similarity index 93% rename from hurricane/src/hurricane/UserGo.h rename to hurricane/src/hurricane/hurricane/UserGo.h index 9d7b35bc..8b9f3165 100644 --- a/hurricane/src/hurricane/UserGo.h +++ b/hurricane/src/hurricane/hurricane/UserGo.h @@ -11,9 +11,9 @@ #ifndef HURRICANE_USER_GO #define HURRICANE_USER_GO -#include "Go.h" -#include "UserGos.h" -#include "DisplaySlot.h" +#include "hurricane/Go.h" +#include "hurricane/UserGos.h" +#include "hurricane/DisplaySlot.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/UserGos.h b/hurricane/src/hurricane/hurricane/UserGos.h similarity index 98% rename from hurricane/src/hurricane/UserGos.h rename to hurricane/src/hurricane/hurricane/UserGos.h index 3e3a40dd..6729835d 100644 --- a/hurricane/src/hurricane/UserGos.h +++ b/hurricane/src/hurricane/hurricane/UserGos.h @@ -11,7 +11,7 @@ #ifndef HURRICANE_USER_GOS #define HURRICANE_USER_GOS -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/VectorCollection.h b/hurricane/src/hurricane/hurricane/VectorCollection.h similarity index 99% rename from hurricane/src/hurricane/VectorCollection.h rename to hurricane/src/hurricane/hurricane/VectorCollection.h index 11539f62..e064e0fa 100644 --- a/hurricane/src/hurricane/VectorCollection.h +++ b/hurricane/src/hurricane/hurricane/VectorCollection.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_VECTOR_COLLECTION #define HURRICANE_VECTOR_COLLECTION -#include "Commons.h" +#include "hurricane/Commons.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Vertical.h b/hurricane/src/hurricane/hurricane/Vertical.h similarity index 97% rename from hurricane/src/hurricane/Vertical.h rename to hurricane/src/hurricane/hurricane/Vertical.h index ed80c694..eff6c9d6 100644 --- a/hurricane/src/hurricane/Vertical.h +++ b/hurricane/src/hurricane/hurricane/Vertical.h @@ -7,8 +7,8 @@ #ifndef HURRICANE_VERTICAL #define HURRICANE_VERTICAL -#include "Segment.h" -#include "Verticals.h" +#include "hurricane/Segment.h" +#include "hurricane/Verticals.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Verticals.h b/hurricane/src/hurricane/hurricane/Verticals.h similarity index 98% rename from hurricane/src/hurricane/Verticals.h rename to hurricane/src/hurricane/hurricane/Verticals.h index a166fc06..ce12ced8 100644 --- a/hurricane/src/hurricane/Verticals.h +++ b/hurricane/src/hurricane/hurricane/Verticals.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_VERTICALS #define HURRICANE_VERTICALS -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Views.h b/hurricane/src/hurricane/hurricane/Views.h similarity index 98% rename from hurricane/src/hurricane/Views.h rename to hurricane/src/hurricane/hurricane/Views.h index 9c2568ea..411db17f 100644 --- a/hurricane/src/hurricane/Views.h +++ b/hurricane/src/hurricane/hurricane/Views.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_VIEWS #define HURRICANE_VIEWS -#include "Collection.h" +#include "hurricane/Collection.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/Warning.h b/hurricane/src/hurricane/hurricane/Warning.h similarity index 98% rename from hurricane/src/hurricane/Warning.h rename to hurricane/src/hurricane/hurricane/Warning.h index 6798e7c8..c155f12d 100644 --- a/hurricane/src/hurricane/Warning.h +++ b/hurricane/src/hurricane/hurricane/Warning.h @@ -7,7 +7,7 @@ #ifndef HURRICANE_WARNING #define HURRICANE_WARNING -#include "Exception.h" +#include "hurricane/Exception.h" namespace Hurricane { diff --git a/hurricane/src/hurricane/demangle.h b/hurricane/src/hurricane/hurricane/demangle.h similarity index 99% rename from hurricane/src/hurricane/demangle.h rename to hurricane/src/hurricane/hurricane/demangle.h index af294672..3ec49022 100644 --- a/hurricane/src/hurricane/demangle.h +++ b/hurricane/src/hurricane/hurricane/demangle.h @@ -21,7 +21,7 @@ #if !defined (DEMANGLE_H) #define DEMANGLE_H -#include "libiberty.h" +#include "hurricane/libiberty.h" #ifdef __cplusplus extern "C" {