Browse Source

Kill the near-global spread of length_delay_calculation.h

pull/18/head
Mark Roszko 4 months ago
parent
commit
1922cab5f4
  1. 1
      pcbnew/board.cpp
  2. 2
      pcbnew/board.h
  3. 2
      pcbnew/dialogs/dialog_shape_properties.cpp
  4. 1
      pcbnew/drc/drc_test_provider_matched_length.cpp
  5. 1
      pcbnew/files.cpp
  6. 1
      pcbnew/length_delay_calculation/length_delay_calculation_item.cpp
  7. 1
      pcbnew/length_delay_calculation/time_domain_parameters_user_defined.cpp
  8. 2
      pcbnew/pcb_edit_frame.cpp
  9. 1
      pcbnew/pcb_track.cpp
  10. 1
      pcbnew/router/pns_kicad_iface.cpp
  11. 1
      pcbnew/router/pns_topology.cpp
  12. 2
      pcbnew/widgets/pcb_net_inspector_panel.cpp
  13. 1
      qa/pcbnew_utils/board_test_utils.cpp

1
pcbnew/board.cpp

@ -39,6 +39,7 @@
#include <convert_shape_list_to_polygon.h>
#include <footprint.h>
#include <font/outline_font.h>
#include <length_delay_calculation/length_delay_calculation.h>
#include <lset.h>
#include <pcb_base_frame.h>
#include <pcb_track.h>

2
pcbnew/board.h

@ -33,7 +33,6 @@
#include <convert_shape_list_to_polygon.h> // for OUTLINE_ERROR_HANDLER
#include <hash.h>
#include <layer_ids.h>
#include <length_delay_calculation/length_delay_calculation.h>
#include <lset.h>
#include <netinfo.h>
#include <pcb_item_containers.h>
@ -51,6 +50,7 @@ class DRC_RTREE;
class PCB_BASE_FRAME;
class PCB_EDIT_FRAME;
class PICKED_ITEMS_LIST;
class LENGTH_DELAY_CALCULATION;
class BOARD;
class FOOTPRINT;
class ZONE;

2
pcbnew/dialogs/dialog_shape_properties.cpp

@ -30,8 +30,10 @@
#include <pcb_edit_frame.h>
#include <wx/valnum.h>
#include <board_commit.h>
#include <board_design_settings.h>
#include <pcb_layer_box_selector.h>
#include <dialogs/html_message_box.h>
#include <length_delay_calculation/length_delay_calculation.h>
#include <tool/tool_manager.h>
#include <tool/actions.h>
#include <pcb_shape.h>

1
pcbnew/drc/drc_test_provider_matched_length.cpp

@ -23,6 +23,7 @@
#include <drc/drc_item.h>
#include <drc/drc_test_provider.h>
#include <drc/drc_length_report.h>
#include <length_delay_calculation/length_delay_calculation.h>
#include <connectivity/connectivity_data.h>
#include <connectivity/from_to_cache.h>

1
pcbnew/files.cpp

@ -39,6 +39,7 @@
#include <kiface_base.h>
#include <macros.h>
#include <trace_helpers.h>
#include <length_delay_calculation/length_delay_calculation.h>
#include <lockfile.h>
#include <wx/snglinst.h>
#include <netlist_reader/pcb_netlist.h>

1
pcbnew/length_delay_calculation/length_delay_calculation_item.cpp

@ -21,6 +21,7 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <length_delay_calculation/length_delay_calculation.h>
#include <length_delay_calculation/length_delay_calculation_item.h>
#include <board.h>

1
pcbnew/length_delay_calculation/time_domain_parameters_user_defined.cpp

@ -22,6 +22,7 @@
*/
#include <board.h>
#include <length_delay_calculation/length_delay_calculation.h>
#include <length_delay_calculation/time_domain_parameters_user_defined.h>
#include <project/project_file.h>

2
pcbnew/pcb_edit_frame.cpp

@ -21,8 +21,10 @@
*/
#include <advanced_config.h>
#include <connectivity/connectivity_data.h>
#include <kiface_base.h>
#include <kiway.h>
#include <board_design_settings.h>
#include <pgm_base.h>
#include <pcb_edit_frame.h>
#include <3d_viewer/eda_3d_viewer_frame.h>

1
pcbnew/pcb_track.cpp

@ -34,6 +34,7 @@
#include <convert_basic_shapes_to_polygon.h>
#include <base_units.h>
#include <layer_range.h>
#include <length_delay_calculation/length_delay_calculation.h>
#include <lset.h>
#include <string_utils.h>
#include <view/view.h>

1
pcbnew/router/pns_kicad_iface.cpp

@ -25,6 +25,7 @@
#include <netinfo.h>
#include <footprint.h>
#include <layer_range.h>
#include <length_delay_calculation/length_delay_calculation.h>
#include <pad.h>
#include <pcb_track.h>
#include <zone.h>

1
pcbnew/router/pns_topology.cpp

@ -32,6 +32,7 @@
#include "pns_topology.h"
#include <board.h>
#include <length_delay_calculation/length_delay_calculation.h>
#include <pad.h>
namespace PNS {

2
pcbnew/widgets/pcb_net_inspector_panel.cpp

@ -26,6 +26,8 @@
#include <connectivity/connectivity_algo.h>
#include <dialogs/dialog_text_entry.h>
#include <footprint.h>
#include <length_delay_calculation/length_delay_calculation.h>
#include <length_delay_calculation/length_delay_calculation_item.h>
#include <pad.h>
#include <pcb_edit_frame.h>
#include <pcb_painter.h>

1
qa/pcbnew_utils/board_test_utils.cpp

@ -38,6 +38,7 @@
#include <pcb_shape.h>
#include <zone.h>
#include <zone_filler.h>
#include <length_delay_calculation/length_delay_calculation.h>
#include <drc/drc_cache_generator.h>
#include <pcbnew_utils/board_file_utils.h>
#include <settings/settings_manager.h>

Loading…
Cancel
Save