* ./hurricane/src :

- Complete include re-organisation.
       include/hurricane/*.h            : kernel.
       include/hurricane/viewer/*.h     : hviewer.
       include/hurricane/inspector/*.h  : hinspector.
     Includes have been moved into subdirectories of .cpp files (as in
       crlcore).
   - Now you must include files like this :
       #include  <hurricane/Layer.h>
       #include  <hurricane/viewer/CellViewer.h>
       #include  <hurricane/inspector/HInspector.h>  
   - Suppressed viewer specific include path in FindHURRICANE.cmake.
   - Re-enabled documentation, with dot disabled as it seems to slow down
      doxygen.

 * ./crlcore/src/crlcore :
   - Adapted to new Hurricane include scheme. Corrected bugs in it's own
       include files (noticeably "Utilities.h").
This commit is contained in:
Jean-Paul Chaput 2008-05-21 22:32:40 +00:00
parent 60fb4ab7d6
commit f88a38af51
168 changed files with 613 additions and 508 deletions

View File

@ -4,10 +4,10 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "BasicLayer.h" #include "hurricane/BasicLayer.h"
#include "Technology.h" #include "hurricane/Technology.h"
#include "CompositeLayer.h" #include "hurricane/CompositeLayer.h"
#include "Error.h" #include "hurricane/Error.h"
namespace Hurricane { namespace Hurricane {

View File

@ -5,8 +5,8 @@
// **************************************************************************************************** // ****************************************************************************************************
// 21-10-2003 added ManhattanDistance & ShrinkByFactor // 21-10-2003 added ManhattanDistance & ShrinkByFactor
#include "Error.h" #include "hurricane/Error.h"
#include "Box.h" #include "hurricane/Box.h"
namespace Hurricane { namespace Hurricane {

View File

@ -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}) 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
)
install(FILES ${includes} DESTINATION /include/hurricane) add_library ( hurricane SHARED ${cpps} )
install(TARGETS hurricane DESTINATION /lib)
install ( FILES ${includes} DESTINATION /include/hurricane)
install ( TARGETS hurricane DESTINATION /lib)

View File

@ -4,20 +4,20 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Cell.h" #include "hurricane/Cell.h"
#include "DataBase.h" #include "hurricane/DataBase.h"
#include "Library.h" #include "hurricane/Library.h"
#include "Instance.h" #include "hurricane/Instance.h"
#include "Net.h" #include "hurricane/Net.h"
#include "Pin.h" #include "hurricane/Pin.h"
#include "RoutingPad.h" #include "hurricane/RoutingPad.h"
#include "Layer.h" #include "hurricane/Layer.h"
#include "Slice.h" #include "hurricane/Slice.h"
#include "Rubber.h" #include "hurricane/Rubber.h"
#include "Marker.h" #include "hurricane/Marker.h"
#include "Component.h" #include "hurricane/Component.h"
#include "UpdateSession.h" #include "hurricane/UpdateSession.h"
#include "Error.h" #include "hurricane/Error.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,10 +4,10 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Slice.h" #include "hurricane/Slice.h"
#include "Cell.h" #include "hurricane/Cell.h"
//#include "MainView.h" //#include "hurricane/MainView.h"
#include "HyperNet.h" #include "hurricane/HyperNet.h"
namespace Hurricane { namespace Hurricane {

View File

@ -6,11 +6,11 @@
#ifdef HAVE_LIBIBERTY #ifdef HAVE_LIBIBERTY
# include "demangle.h" #include "hurricane/demangle.h"
# include "libiberty.h" #include "hurricane/libiberty.h"
#endif #endif
#include "Commons.h" #include "hurricane/Commons.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,13 +4,13 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Component.h" #include "hurricane/Component.h"
#include "Net.h" #include "hurricane/Net.h"
#include "Cell.h" #include "hurricane/Cell.h"
#include "Rubber.h" #include "hurricane/Rubber.h"
#include "Slice.h" #include "hurricane/Slice.h"
#include "BasicLayer.h" #include "hurricane/BasicLayer.h"
#include "Error.h" #include "hurricane/Error.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,10 +4,10 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "CompositeLayer.h" #include "hurricane/CompositeLayer.h"
#include "Technology.h" #include "hurricane/Technology.h"
#include "BasicLayer.h" #include "hurricane/BasicLayer.h"
#include "Error.h" #include "hurricane/Error.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,12 +4,12 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Contact.h" #include "hurricane/Contact.h"
#include "Net.h" #include "hurricane/Net.h"
#include "BasicLayer.h" #include "hurricane/BasicLayer.h"
#include "CompositeLayer.h" #include "hurricane/CompositeLayer.h"
#include "Plug.h" #include "hurricane/Plug.h"
#include "Error.h" #include "hurricane/Error.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,10 +4,10 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "DBo.h" #include "hurricane/DBo.h"
#include "Property.h" #include "hurricane/Property.h"
#include "Quark.h" #include "hurricane/Quark.h"
#include "Error.h" #include "hurricane/Error.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,10 +4,10 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "DRCError.h" #include "hurricane/DRCError.h"
#include "Cell.h" #include "hurricane/Cell.h"
#include "Slice.h" #include "hurricane/Slice.h"
#include "Error.h" #include "hurricane/Error.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,13 +4,13 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "DataBase.h" #include "hurricane/DataBase.h"
#include "Technology.h" #include "hurricane/Technology.h"
#include "Library.h" #include "hurricane/Library.h"
#include "Cell.h" #include "hurricane/Cell.h"
#include "Timer.h" #include "hurricane/Timer.h"
#include "Error.h" #include "hurricane/Error.h"
#include "UpdateSession.h" #include "hurricane/UpdateSession.h"
namespace Hurricane { namespace Hurricane {

View File

@ -50,18 +50,18 @@
# include "DeepNet.h" #include "hurricane/DeepNet.h"
# include "Cell.h" #include "hurricane/Cell.h"
# include "Instance.h" #include "hurricane/Instance.h"
# include "Plug.h" #include "hurricane/Plug.h"
# include "RoutingPad.h" #include "hurricane/RoutingPad.h"
# include "Pin.h" #include "hurricane/Pin.h"
# include "Contact.h" #include "hurricane/Contact.h"
# include "Vertical.h" #include "hurricane/Vertical.h"
# include "Horizontal.h" #include "hurricane/Horizontal.h"
# include "Pad.h" #include "hurricane/Pad.h"
# include "UpdateSession.h" #include "hurricane/UpdateSession.h"
# include "Error.h" #include "hurricane/Error.h"
namespace Hurricane { namespace Hurricane {

View File

@ -8,13 +8,13 @@
// Author: C. Alexandre // Author: C. Alexandre
// **************************************************************************************************** // ****************************************************************************************************
#include "Error.h" #include "hurricane/Error.h"
#include "UserGo.h" #include "hurricane/UserGo.h"
#include "Relation.h" #include "hurricane/Relation.h"
#include "Cell.h" #include "hurricane/Cell.h"
#include "UpdateSession.h" #include "hurricane/UpdateSession.h"
#include "DisplaySlot.h" #include "hurricane/DisplaySlot.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,11 +4,11 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Entity.h" #include "hurricane/Entity.h"
#include "Quark.h" #include "hurricane/Quark.h"
#include "Cell.h" #include "hurricane/Cell.h"
#include "Instance.h" #include "hurricane/Instance.h"
#include "SharedPath.h" #include "hurricane/SharedPath.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,7 +4,7 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Error.h" #include "hurricane/Error.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,7 +4,7 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Exception.h" #include "hurricane/Exception.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,8 +4,8 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Go.h" #include "hurricane/Go.h"
#include "QuadTree.h" #include "hurricane/QuadTree.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,10 +4,10 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Hook.h" #include "hurricane/Hook.h"
#include "Component.h" #include "hurricane/Component.h"
#include "Rubber.h" #include "hurricane/Rubber.h"
#include "Error.h" #include "hurricane/Error.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,12 +4,12 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Horizontal.h" #include "hurricane/Horizontal.h"
#include "Net.h" #include "hurricane/Net.h"
#include "BasicLayer.h" #include "hurricane/BasicLayer.h"
#include "CompositeLayer.h" #include "hurricane/CompositeLayer.h"
#include "Plug.h" #include "hurricane/Plug.h"
#include "Error.h" #include "hurricane/Error.h"
namespace Hurricane { namespace Hurricane {

View File

@ -5,14 +5,14 @@
// **************************************************************************************************** // ****************************************************************************************************
// 21-10-2003 Alignment BULL-LIP6 // 21-10-2003 Alignment BULL-LIP6
#include "HyperNet.h" #include "hurricane/HyperNet.h"
#include "Cell.h" #include "hurricane/Cell.h"
#include "Net.h" #include "hurricane/Net.h"
#include "Instance.h" #include "hurricane/Instance.h"
#include "Rubber.h" #include "hurricane/Rubber.h"
#include "Plug.h" #include "hurricane/Plug.h"
#include "BasicLayer.h" #include "hurricane/BasicLayer.h"
#include "Error.h" #include "hurricane/Error.h"
namespace Hurricane { namespace Hurricane {

View File

@ -5,12 +5,12 @@
// **************************************************************************************************** // ****************************************************************************************************
// 21-10-2003 Alignment BULL-LIP6 // 21-10-2003 Alignment BULL-LIP6
#include "Instance.h" #include "hurricane/Instance.h"
#include "Cell.h" #include "hurricane/Cell.h"
#include "Net.h" #include "hurricane/Net.h"
#include "Plug.h" #include "hurricane/Plug.h"
#include "SharedPath.h" #include "hurricane/SharedPath.h"
#include "Error.h" #include "hurricane/Error.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,7 +4,7 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Interruption.h" #include "hurricane/Interruption.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,7 +4,7 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Interval.h" #include "hurricane/Interval.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,9 +4,9 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Layer.h" #include "hurricane/Layer.h"
#include "Technology.h" #include "hurricane/Technology.h"
#include "Error.h" #include "hurricane/Error.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,11 +4,11 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Library.h" #include "hurricane/Library.h"
#include "DataBase.h" #include "hurricane/DataBase.h"
#include "Cell.h" #include "hurricane/Cell.h"
#include "Technology.h" #include "hurricane/Technology.h"
#include "Error.h" #include "hurricane/Error.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,10 +4,10 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Marker.h" #include "hurricane/Marker.h"
#include "Cell.h" #include "hurricane/Cell.h"
#include "Slice.h" #include "hurricane/Slice.h"
#include "Error.h" #include "hurricane/Error.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,8 +4,8 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Name.h" #include "hurricane/Name.h"
#include "SharedName.h" #include "hurricane/SharedName.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,19 +4,19 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Net.h" #include "hurricane/Net.h"
#include "Cell.h" #include "hurricane/Cell.h"
#include "Instance.h" #include "hurricane/Instance.h"
#include "Plug.h" #include "hurricane/Plug.h"
#include "RoutingPad.h" #include "hurricane/RoutingPad.h"
#include "RoutingPads.h" #include "hurricane/RoutingPads.h"
#include "Pin.h" #include "hurricane/Pin.h"
#include "Contact.h" #include "hurricane/Contact.h"
#include "Vertical.h" #include "hurricane/Vertical.h"
#include "Horizontal.h" #include "hurricane/Horizontal.h"
#include "Pad.h" #include "hurricane/Pad.h"
#include "UpdateSession.h" #include "hurricane/UpdateSession.h"
#include "Error.h" #include "hurricane/Error.h"
namespace Hurricane { namespace Hurricane {

View File

@ -8,11 +8,11 @@
// Author: C. Alexandre // Author: C. Alexandre
// **************************************************************************************************** // ****************************************************************************************************
#include "Error.h" #include "hurricane/Error.h"
#include "Relation.h" #include "hurricane/Relation.h"
#include "Net.h" #include "hurricane/Net.h"
#include "NetExternalComponents.h" #include "hurricane/NetExternalComponents.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,13 +4,13 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Occurrence.h" #include "hurricane/Occurrence.h"
#include "Entity.h" #include "hurricane/Entity.h"
#include "Cell.h" #include "hurricane/Cell.h"
#include "SharedPath.h" #include "hurricane/SharedPath.h"
#include "Property.h" #include "hurricane/Property.h"
#include "Quark.h" #include "hurricane/Quark.h"
#include "Error.h" #include "hurricane/Error.h"
namespace Hurricane { namespace Hurricane {

View File

@ -5,11 +5,11 @@
// **************************************************************************************************** // ****************************************************************************************************
// 21-10-2003 Alignment BULL-LIP6 (to be seen : PROVISOIREMENT in _Draw & _Highlight) // 21-10-2003 Alignment BULL-LIP6 (to be seen : PROVISOIREMENT in _Draw & _Highlight)
#include "Pad.h" #include "hurricane/Pad.h"
#include "Net.h" #include "hurricane/Net.h"
#include "BasicLayer.h" #include "hurricane/BasicLayer.h"
#include "CompositeLayer.h" #include "hurricane/CompositeLayer.h"
#include "Error.h" #include "hurricane/Error.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,11 +4,11 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Path.h" #include "hurricane/Path.h"
#include "SharedPath.h" #include "hurricane/SharedPath.h"
#include "Cell.h" #include "hurricane/Cell.h"
#include "Instance.h" #include "hurricane/Instance.h"
#include "Error.h" #include "hurricane/Error.h"
namespace Hurricane { namespace Hurricane {

View File

@ -8,8 +8,8 @@
// Authors: Christophe Alexandre. // Authors: Christophe Alexandre.
// **************************************************************************************************** // ****************************************************************************************************
#include "Cell.h" #include "hurricane/Cell.h"
#include "Pin.h" #include "hurricane/Pin.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,11 +4,11 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Plug.h" #include "hurricane/Plug.h"
#include "Net.h" #include "hurricane/Net.h"
#include "Cell.h" #include "hurricane/Cell.h"
#include "Instance.h" #include "hurricane/Instance.h"
#include "Error.h" #include "hurricane/Error.h"
namespace Hurricane { namespace Hurricane {

View File

@ -5,7 +5,7 @@
// **************************************************************************************************** // ****************************************************************************************************
// 21-10-2003 Alignment BULL-LIP6 : added operators+ += ... (questionnable!) // 21-10-2003 Alignment BULL-LIP6 : added operators+ += ... (questionnable!)
#include "Point.h" #include "hurricane/Point.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,9 +4,9 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Property.h" #include "hurricane/Property.h"
#include "DBo.h" #include "hurricane/DBo.h"
#include "Error.h" #include "hurricane/Error.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,9 +4,9 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "QuadTree.h" #include "hurricane/QuadTree.h"
#include "Go.h" #include "hurricane/Go.h"
#include "Error.h" #include "hurricane/Error.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,10 +4,10 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Quark.h" #include "hurricane/Quark.h"
#include "SharedPath.h" #include "hurricane/SharedPath.h"
#include "Entity.h" #include "hurricane/Entity.h"
#include "Error.h" #include "hurricane/Error.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,7 +4,7 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Commons.h" #include "hurricane/Commons.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,10 +4,10 @@
// Copyright (c) LIP6/UPMC 2006-2006, All Rights Reserved // Copyright (c) LIP6/UPMC 2006-2006, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Reference.h" #include "hurricane/Reference.h"
#include "Cell.h" #include "hurricane/Cell.h"
#include "Slice.h" #include "hurricane/Slice.h"
#include "Error.h" #include "hurricane/Error.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,8 +4,8 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Region.h" #include "hurricane/Region.h"
#include "Error.h" #include "hurricane/Error.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,11 +4,11 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Relation.h" #include "hurricane/Relation.h"
#include "DBo.h" #include "hurricane/DBo.h"
#include "Error.h" #include "hurricane/Error.h"
#include "Filter.h" #include "hurricane/Filter.h"
namespace Hurricane { namespace Hurricane {

View File

@ -8,18 +8,18 @@
// Authors: H.Clement, M.Sroka // Authors: H.Clement, M.Sroka
// **************************************************************************************************** // ****************************************************************************************************
#include "RoutingPad.h" #include "hurricane/RoutingPad.h"
#include "Net.h" #include "hurricane/Net.h"
#include "NetExternalComponents.h" #include "hurricane/NetExternalComponents.h"
#include "CompositeLayer.h" #include "hurricane/CompositeLayer.h"
#include "Plug.h" #include "hurricane/Plug.h"
#include "Pin.h" #include "hurricane/Pin.h"
#include "Segment.h" #include "hurricane/Segment.h"
#include "Horizontal.h" #include "hurricane/Horizontal.h"
#include "Vertical.h" #include "hurricane/Vertical.h"
#include "Cell.h" #include "hurricane/Cell.h"
#include "Instance.h" #include "hurricane/Instance.h"
#include "Error.h" #include "hurricane/Error.h"
namespace Hurricane { namespace Hurricane {

View File

@ -5,14 +5,14 @@
// **************************************************************************************************** // ****************************************************************************************************
// 21-10-2003 Alignment BULL-LIP6 : Rubbers end at component center // 21-10-2003 Alignment BULL-LIP6 : Rubbers end at component center
#include "Rubber.h" #include "hurricane/Rubber.h"
#include "Net.h" #include "hurricane/Net.h"
#include "Plug.h" #include "hurricane/Plug.h"
#include "Instance.h" #include "hurricane/Instance.h"
#include "Cell.h" #include "hurricane/Cell.h"
#include "Hook.h" #include "hurricane/Hook.h"
#include "Component.h" #include "hurricane/Component.h"
#include "Error.h" #include "hurricane/Error.h"
namespace Hurricane { namespace Hurricane {

View File

@ -5,10 +5,10 @@
// **************************************************************************************************** // ****************************************************************************************************
// 21-10-2003 Alignment BULL-LIP6 // 21-10-2003 Alignment BULL-LIP6
#include "Segment.h" #include "hurricane/Segment.h"
#include "BasicLayer.h" #include "hurricane/BasicLayer.h"
#include "CompositeLayer.h" #include "hurricane/CompositeLayer.h"
#include "Error.h" #include "hurricane/Error.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,7 +4,7 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "SharedName.h" #include "hurricane/SharedName.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,11 +4,11 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "SharedPath.h" #include "hurricane/SharedPath.h"
#include "Instance.h" #include "hurricane/Instance.h"
#include "Cell.h" #include "hurricane/Cell.h"
#include "Quark.h" #include "hurricane/Quark.h"
#include "Error.h" #include "hurricane/Error.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,12 +4,12 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Slice.h" #include "hurricane/Slice.h"
#include "Cell.h" #include "hurricane/Cell.h"
#include "Component.h" #include "hurricane/Component.h"
#include "Marker.h" #include "hurricane/Marker.h"
#include "Layer.h" #include "hurricane/Layer.h"
#include "Error.h" #include "hurricane/Error.h"
namespace Hurricane { namespace Hurricane {

View File

@ -25,7 +25,7 @@
#include "Commons.h" #include "hurricane/Commons.h"

View File

@ -51,7 +51,7 @@
# include <typeinfo> # include <typeinfo>
# include "Commons.h" #include "hurricane/Commons.h"

View File

@ -4,7 +4,7 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Tabulation.h" #include "hurricane/Tabulation.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,12 +4,12 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Technology.h" #include "hurricane/Technology.h"
#include "DataBase.h" #include "hurricane/DataBase.h"
#include "Layer.h" #include "hurricane/Layer.h"
#include "BasicLayer.h" #include "hurricane/BasicLayer.h"
#include "CompositeLayer.h" #include "hurricane/CompositeLayer.h"
#include "Error.h" #include "hurricane/Error.h"

View File

@ -4,7 +4,7 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Timer.h" #include "hurricane/Timer.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,7 +4,7 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Transformation.h" #include "hurricane/Transformation.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,8 +4,8 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Unit.h" #include "hurricane/Unit.h"
#include "Error.h" #include "hurricane/Error.h"
#include <math.h> #include <math.h>

View File

@ -4,10 +4,10 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "UpdateSession.h" #include "hurricane/UpdateSession.h"
#include "Go.h" #include "hurricane/Go.h"
#include "Cell.h" #include "hurricane/Cell.h"
#include "Error.h" #include "hurricane/Error.h"
namespace Hurricane { namespace Hurricane {

View File

@ -8,8 +8,8 @@
// Authors: C. Alexandre // Authors: C. Alexandre
// **************************************************************************************************** // ****************************************************************************************************
#include "Cell.h" #include "hurricane/Cell.h"
#include "UserGo.h" #include "hurricane/UserGo.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,12 +4,12 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Vertical.h" #include "hurricane/Vertical.h"
#include "Net.h" #include "hurricane/Net.h"
#include "BasicLayer.h" #include "hurricane/BasicLayer.h"
#include "CompositeLayer.h" #include "hurricane/CompositeLayer.h"
#include "Plug.h" #include "hurricane/Plug.h"
#include "Error.h" #include "hurricane/Error.h"
namespace Hurricane { namespace Hurricane {

View File

@ -4,7 +4,7 @@
// Copyright (c) BULL S.A. 2000-2004, All Rights Reserved // Copyright (c) BULL S.A. 2000-2004, All Rights Reserved
// **************************************************************************************************** // ****************************************************************************************************
#include "Warning.h" #include "hurricane/Warning.h"
namespace Hurricane { namespace Hurricane {

View File

@ -7,9 +7,9 @@
#ifndef HURRICANE_BASIC_LAYER #ifndef HURRICANE_BASIC_LAYER
#define HURRICANE_BASIC_LAYER #define HURRICANE_BASIC_LAYER
#include "Layer.h" #include "hurricane/Layer.h"
#include "BasicLayers.h" #include "hurricane/BasicLayers.h"
#include "Box.h" #include "hurricane/Box.h"
namespace Hurricane { namespace Hurricane {

View File

@ -7,7 +7,7 @@
#ifndef HURRICANE_BASIC_LAYERS #ifndef HURRICANE_BASIC_LAYERS
#define HURRICANE_BASIC_LAYERS #define HURRICANE_BASIC_LAYERS
#include "Collection.h" #include "hurricane/Collection.h"
namespace Hurricane { namespace Hurricane {

View File

@ -7,7 +7,7 @@
#ifndef HURRICANE_BOX #ifndef HURRICANE_BOX
#define HURRICANE_BOX #define HURRICANE_BOX
#include "Point.h" #include "hurricane/Point.h"
namespace Hurricane { namespace Hurricane {

View File

@ -7,8 +7,8 @@
#ifndef HURRICANE_BOXES #ifndef HURRICANE_BOXES
#define HURRICANE_BOXES #define HURRICANE_BOXES
#include "Collection.h" #include "hurricane/Collection.h"
#include "Box.h" #include "hurricane/Box.h"
namespace Hurricane { namespace Hurricane {

View File

@ -7,25 +7,25 @@
#ifndef HURRICANE_CELL #ifndef HURRICANE_CELL
#define HURRICANE_CELL #define HURRICANE_CELL
#include "Pathes.h" #include "hurricane/Pathes.h"
#include "Entity.h" #include "hurricane/Entity.h"
#include "Cells.h" #include "hurricane/Cells.h"
#include "Instance.h" #include "hurricane/Instance.h"
#include "DeepNet.h" #include "hurricane/DeepNet.h"
#include "Pin.h" #include "hurricane/Pin.h"
#include "Pins.h" #include "hurricane/Pins.h"
#include "Slices.h" #include "hurricane/Slices.h"
#include "Rubbers.h" #include "hurricane/Rubbers.h"
#include "Markers.h" #include "hurricane/Markers.h"
#include "Marker.h" #include "hurricane/Marker.h"
#include "Reference.h" #include "hurricane/Reference.h"
#include "Components.h" #include "hurricane/Components.h"
#include "Occurrences.h" #include "hurricane/Occurrences.h"
#include "Transformation.h" #include "hurricane/Transformation.h"
#include "Layer.h" #include "hurricane/Layer.h"
#include "QuadTree.h" #include "hurricane/QuadTree.h"
#include "IntrusiveMap.h" #include "hurricane/IntrusiveMap.h"
#include "IntrusiveSet.h" #include "hurricane/IntrusiveSet.h"
namespace Hurricane { namespace Hurricane {

View File

@ -7,7 +7,7 @@
#ifndef HURRICANE_CELLS #ifndef HURRICANE_CELLS
#define HURRICANE_CELLS #define HURRICANE_CELLS
#include "Collection.h" #include "hurricane/Collection.h"
namespace Hurricane { namespace Hurricane {

View File

@ -8,8 +8,8 @@
#ifndef HURRICANE_COLLECTION #ifndef HURRICANE_COLLECTION
#define HURRICANE_COLLECTION #define HURRICANE_COLLECTION
#include "Locator.h" #include "hurricane/Locator.h"
#include "Filter.h" #include "hurricane/Filter.h"
namespace Hurricane { namespace Hurricane {
@ -824,11 +824,11 @@ template<typename T>
} // End of Hurricane namespace. } // End of Hurricane namespace.
#include "MultisetCollection.h" #include "hurricane/MultisetCollection.h"
#include "SetCollection.h" #include "hurricane/SetCollection.h"
#include "MapCollection.h" #include "hurricane/MapCollection.h"
#include "ListCollection.h" #include "hurricane/ListCollection.h"
#include "VectorCollection.h" #include "hurricane/VectorCollection.h"
#endif // HURRICANE_COLLECTION #endif // HURRICANE_COLLECTION

View File

@ -129,7 +129,7 @@ using namespace std;
// Note: we are outside the Hurricane namespace. // 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 // Note: Record & Tabulation are not templates, so they can be defined
// early. // early.
#include "Tabulation.h" #include "hurricane/Tabulation.h"

View File

@ -7,11 +7,11 @@
#ifndef HURRICANE_COMPONENT #ifndef HURRICANE_COMPONENT
#define HURRICANE_COMPONENT #define HURRICANE_COMPONENT
#include "Go.h" #include "hurricane/Go.h"
#include "Components.h" #include "hurricane/Components.h"
#include "Hook.h" #include "hurricane/Hook.h"
#include "Hooks.h" #include "hurricane/Hooks.h"
#include "Interval.h" #include "hurricane/Interval.h"
namespace Hurricane { namespace Hurricane {

View File

@ -7,7 +7,7 @@
#ifndef HURRICANE_COMPONENTS #ifndef HURRICANE_COMPONENTS
#define HURRICANE_COMPONENTS #define HURRICANE_COMPONENTS
#include "Collection.h" #include "hurricane/Collection.h"
namespace Hurricane { namespace Hurricane {

View File

@ -7,8 +7,8 @@
#ifndef HURRICANE_COMPOSITE_LAYER #ifndef HURRICANE_COMPOSITE_LAYER
#define HURRICANE_COMPOSITE_LAYER #define HURRICANE_COMPOSITE_LAYER
#include "Layer.h" #include "hurricane/Layer.h"
#include "CompositeLayers.h" #include "hurricane/CompositeLayers.h"
namespace Hurricane { namespace Hurricane {

View File

@ -7,7 +7,7 @@
#ifndef HURRICANE_COMPOSITE_LAYERS #ifndef HURRICANE_COMPOSITE_LAYERS
#define HURRICANE_COMPOSITE_LAYERS #define HURRICANE_COMPOSITE_LAYERS
#include "Collection.h" #include "hurricane/Collection.h"
namespace Hurricane { namespace Hurricane {

View File

@ -7,8 +7,8 @@
#ifndef HURRICANE_CONTACT #ifndef HURRICANE_CONTACT
#define HURRICANE_CONTACT #define HURRICANE_CONTACT
#include "Component.h" #include "hurricane/Component.h"
#include "Contacts.h" #include "hurricane/Contacts.h"
namespace Hurricane { namespace Hurricane {

View File

@ -7,7 +7,7 @@
#ifndef HURRICANE_CONTACTS #ifndef HURRICANE_CONTACTS
#define HURRICANE_CONTACTS #define HURRICANE_CONTACTS
#include "Collection.h" #include "hurricane/Collection.h"
namespace Hurricane { namespace Hurricane {

View File

@ -7,9 +7,9 @@
#ifndef HURRICANE_DBO #ifndef HURRICANE_DBO
#define HURRICANE_DBO #define HURRICANE_DBO
#include "DBos.h" #include "hurricane/DBos.h"
#include "Name.h" #include "hurricane/Name.h"
#include "Property.h" #include "hurricane/Property.h"
namespace Hurricane { namespace Hurricane {

View File

@ -7,7 +7,7 @@
#ifndef HURRICANE_DBOS #ifndef HURRICANE_DBOS
#define HURRICANE_DBOS #define HURRICANE_DBOS
#include "Collection.h" #include "hurricane/Collection.h"
namespace Hurricane { namespace Hurricane {

View File

@ -7,7 +7,7 @@
#ifndef HURRICANE_DRCERROR #ifndef HURRICANE_DRCERROR
#define HURRICANE_DRCERROR #define HURRICANE_DRCERROR
#include "Marker.h" #include "hurricane/Marker.h"
namespace Hurricane { namespace Hurricane {

View File

@ -7,8 +7,8 @@
#ifndef HURRICANE_DATA_BASE #ifndef HURRICANE_DATA_BASE
#define HURRICANE_DATA_BASE #define HURRICANE_DATA_BASE
#include "DBo.h" #include "hurricane/DBo.h"
#include "Unit.h" #include "hurricane/Unit.h"
namespace Hurricane { namespace Hurricane {

View File

@ -53,9 +53,9 @@
# ifndef __HURRICANE_DEEPNET__ # ifndef __HURRICANE_DEEPNET__
# define __HURRICANE_DEEPNET__ # define __HURRICANE_DEEPNET__
# include "Net.h" #include "hurricane/Net.h"
# include "HyperNet.h" #include "hurricane/HyperNet.h"
# include "Occurrence.h" #include "hurricane/Occurrence.h"

View File

@ -11,9 +11,9 @@
#ifndef HURRICANE_DISPLAY_SLOT #ifndef HURRICANE_DISPLAY_SLOT
#define HURRICANE_DISPLAY_SLOT #define HURRICANE_DISPLAY_SLOT
#include "QuadTree.h" #include "hurricane/QuadTree.h"
#include "UserGos.h" #include "hurricane/UserGos.h"
#include "DisplaySlots.h" #include "hurricane/DisplaySlots.h"
namespace Hurricane { namespace Hurricane {

View File

@ -11,7 +11,7 @@
#ifndef HURRICANE_DISPLAY_SLOTS #ifndef HURRICANE_DISPLAY_SLOTS
#define HURRICANE_DISPLAY_SLOTS #define HURRICANE_DISPLAY_SLOTS
#include "Collection.h" #include "hurricane/Collection.h"
namespace Hurricane { namespace Hurricane {

View File

@ -7,7 +7,7 @@
#ifndef HURRICANE_ENTITIES #ifndef HURRICANE_ENTITIES
#define HURRICANE_ENTITIES #define HURRICANE_ENTITIES
#include "Collection.h" #include "hurricane/Collection.h"
namespace Hurricane { namespace Hurricane {

View File

@ -7,9 +7,9 @@
#ifndef HURRICANE_ENTITY #ifndef HURRICANE_ENTITY
#define HURRICANE_ENTITY #define HURRICANE_ENTITY
#include "DBo.h" #include "hurricane/DBo.h"
#include "Entities.h" #include "hurricane/Entities.h"
#include "Box.h" #include "hurricane/Box.h"
namespace Hurricane { namespace Hurricane {

View File

@ -7,7 +7,7 @@
#ifndef HURRICANE_ERROR #ifndef HURRICANE_ERROR
#define HURRICANE_ERROR #define HURRICANE_ERROR
#include "Exception.h" #include "hurricane/Exception.h"
namespace Hurricane { namespace Hurricane {

View File

@ -7,7 +7,7 @@
#ifndef HURRICANE_EXCEPTION #ifndef HURRICANE_EXCEPTION
#define HURRICANE_EXCEPTION #define HURRICANE_EXCEPTION
#include "Commons.h" #include "hurricane/Commons.h"
namespace Hurricane { namespace Hurricane {

View File

@ -7,7 +7,7 @@
#ifndef HURRICANE_FILTER #ifndef HURRICANE_FILTER
#define HURRICANE_FILTER #define HURRICANE_FILTER
#include "Commons.h" #include "hurricane/Commons.h"
namespace Hurricane { namespace Hurricane {

View File

@ -7,9 +7,9 @@
#ifndef HURRICANE_GO #ifndef HURRICANE_GO
#define HURRICANE_GO #define HURRICANE_GO
#include "Entity.h" #include "hurricane/Entity.h"
#include "Gos.h" #include "hurricane/Gos.h"
#include "Transformation.h" #include "hurricane/Transformation.h"
namespace Hurricane { namespace Hurricane {

View File

@ -7,7 +7,7 @@
#ifndef HURRICANE_GOS #ifndef HURRICANE_GOS
#define HURRICANE_GOS #define HURRICANE_GOS
#include "Collection.h" #include "hurricane/Collection.h"
namespace Hurricane { namespace Hurricane {

View File

@ -7,7 +7,7 @@
#ifndef HURRICANE_HOOK #ifndef HURRICANE_HOOK
#define HURRICANE_HOOK #define HURRICANE_HOOK
#include "Hooks.h" #include "hurricane/Hooks.h"
namespace Hurricane { namespace Hurricane {

View File

@ -7,7 +7,7 @@
#ifndef HURRICANE_HOOKS #ifndef HURRICANE_HOOKS
#define HURRICANE_HOOKS #define HURRICANE_HOOKS
#include "Collection.h" #include "hurricane/Collection.h"
namespace Hurricane { namespace Hurricane {

View File

@ -7,8 +7,8 @@
#ifndef HURRICANE_HORIZONTAL #ifndef HURRICANE_HORIZONTAL
#define HURRICANE_HORIZONTAL #define HURRICANE_HORIZONTAL
#include "Segment.h" #include "hurricane/Segment.h"
#include "Horizontals.h" #include "hurricane/Horizontals.h"
namespace Hurricane { namespace Hurricane {

View File

@ -7,7 +7,7 @@
#ifndef HURRICANE_HORIZONTALS #ifndef HURRICANE_HORIZONTALS
#define HURRICANE_HORIZONTALS #define HURRICANE_HORIZONTALS
#include "Collection.h" #include "hurricane/Collection.h"
namespace Hurricane { namespace Hurricane {

View File

@ -8,7 +8,7 @@
#ifndef HURRICANE_HYPER_NET #ifndef HURRICANE_HYPER_NET
#define HURRICANE_HYPER_NET #define HURRICANE_HYPER_NET
#include "Occurrences.h" #include "hurricane/Occurrences.h"
namespace Hurricane { namespace Hurricane {

View File

@ -7,10 +7,10 @@
#ifndef HURRICANE_INSTANCE #ifndef HURRICANE_INSTANCE
#define HURRICANE_INSTANCE #define HURRICANE_INSTANCE
#include "Go.h" #include "hurricane/Go.h"
#include "Plug.h" #include "hurricane/Plug.h"
#include "SharedPath.h" #include "hurricane/SharedPath.h"
#include "IntrusiveMap.h" #include "hurricane/IntrusiveMap.h"
namespace Hurricane { namespace Hurricane {

View File

@ -7,7 +7,7 @@
#ifndef HURRICANE_INSTANCES #ifndef HURRICANE_INSTANCES
#define HURRICANE_INSTANCES #define HURRICANE_INSTANCES
#include "Collection.h" #include "hurricane/Collection.h"
namespace Hurricane { namespace Hurricane {

View File

@ -7,7 +7,7 @@
#ifndef HURRICANE_INTERRUPTION #ifndef HURRICANE_INTERRUPTION
#define HURRICANE_INTERRUPTION #define HURRICANE_INTERRUPTION
#include "Exception.h" #include "hurricane/Exception.h"
namespace Hurricane { namespace Hurricane {

View File

@ -7,7 +7,7 @@
#ifndef HURRICANE_INTERVAL #ifndef HURRICANE_INTERVAL
#define HURRICANE_INTERVAL #define HURRICANE_INTERVAL
#include "Unit.h" #include "hurricane/Unit.h"
namespace Hurricane { namespace Hurricane {

View File

@ -7,8 +7,8 @@
#ifndef HURRICANE_INTERVALS #ifndef HURRICANE_INTERVALS
#define HURRICANE_INTERVALS #define HURRICANE_INTERVALS
#include "Collection.h" #include "hurricane/Collection.h"
#include "Interval.h" #include "hurricane/Interval.h"
namespace Hurricane { namespace Hurricane {

View File

@ -9,8 +9,8 @@
#include <algorithm> #include <algorithm>
#include "Collection.h" #include "hurricane/Collection.h"
#include "Error.h" // AD #include "hurricane/Error.h" // AD
namespace Hurricane { namespace Hurricane {

View File

@ -9,8 +9,8 @@
#include <algorithm> #include <algorithm>
#include "Collection.h" #include "hurricane/Collection.h"
#include "Error.h" // AD #include "hurricane/Error.h" // AD
namespace Hurricane { namespace Hurricane {

Some files were not shown because too many files have changed in this diff Show More