| 
    KiCad PCB EDA Suite
    
   | 
 
Primary data item for entries in the Net Inspector list. More...
#include <pcb_net_inspector_panel_data_model.h>
Public Types | |
| enum class | GROUP_TYPE { NONE , USER_DEFINED , NETCLASS } | 
Public Member Functions | |
| LIST_ITEM (unsigned int aGroupNumber, const wxString &aGroupName, GROUP_TYPE aGroupType) | |
| LIST_ITEM (NETINFO_ITEM *aNet) | |
| LIST_ITEM () | |
| LIST_ITEM & | operator= (const LIST_ITEM &)=delete | 
| bool | GetIsGroup () const | 
| const wxString & | GetGroupName () const | 
| GROUP_TYPE | GetGroupType () const | 
| int | GetGroupNumber () const | 
| auto | ChildrenBegin () const | 
| auto | ChildrenEnd () const | 
| unsigned int | ChildrenCount () const | 
| void | SetLayerCount (unsigned int aValue) | 
| NETINFO_ITEM * | GetNet () const | 
| int | GetNetCode () const | 
| const wxString & | GetNetName () const | 
| const wxString & | GetNetclassName () const | 
| void | ResetColumnChangedBits () | 
| unsigned int | GetPadCount () const | 
| bool | PadCountChanged () const | 
| void | SetPadCount (unsigned int aValue) | 
| void | AddPadCount (unsigned int aValue) | 
| void | SubPadCount (unsigned int aValue) | 
| unsigned | GetViaCount () const | 
| bool | ViaCountChanged () const | 
| void | SetViaCount (unsigned int aValue) | 
| void | AddViaCount (unsigned int aValue) | 
| void | SubViaCount (unsigned int aValue) | 
| int64_t | GetViaLength () const | 
| bool | ViaLengthChanged () const | 
| void | SetViaLength (unsigned int aValue) | 
| void | AddViaLength (unsigned int aValue) | 
| void | SubViaLength (int64_t aValue) | 
| int64_t | GetViaDelay () const | 
| void | SetViaDelay (unsigned int aValue) | 
| void | AddViaDelay (unsigned int aValue) | 
| void | SubViaDelay (int64_t aValue) | 
| int64_t | GetBoardWireLength () const | 
| int64_t | GetBoardWireDelay () const | 
| int64_t | GetLayerWireLength (PCB_LAYER_ID aLayer) const | 
| int64_t | GetLayerWireDelay (PCB_LAYER_ID aLayer) const | 
| bool | BoardWireLengthChanged () const | 
| void | SetLayerWireLength (const int64_t aValue, PCB_LAYER_ID aLayer) | 
| std::map< PCB_LAYER_ID, int64_t > | GetLayerWireLengths () const | 
| std::map< PCB_LAYER_ID, int64_t > | GetLayerWireDelays () const | 
| void | SetLayerWireLengths (const std::map< PCB_LAYER_ID, int64_t > &aValue) | 
| void | AddLayerWireLength (const int64_t aValue, PCB_LAYER_ID aLayer) | 
| void | SubLayerWireLength (const int64_t aValue, PCB_LAYER_ID aLayer) | 
| void | SetLayerWireDelays (const std::map< PCB_LAYER_ID, int64_t > &aValue) | 
| void | AddLayerWireDelay (const int64_t aValue, PCB_LAYER_ID aLayer) | 
| void | SubLayerWireDelay (const int64_t aValue, PCB_LAYER_ID aLayer) | 
| int64_t | GetPadDieLength () const | 
| bool | PadDieLengthChanged () const | 
| void | SetPadDieLength (int64_t aValue) | 
| void | AddPadDieLength (int64_t aValue) | 
| void | SubPadDieLength (int64_t aValue) | 
| int64_t | GetPadDieDelay () const | 
| void | SetPadDieDelay (int64_t aValue) | 
| void | AddPadDieDelay (int64_t aValue) | 
| void | SubPadDieDelay (int64_t aValue) | 
| unsigned long long int | GetTotalLength () const | 
| unsigned long long int | GetTotalDelay () const | 
| bool | TotalLengthChanged () const | 
| LIST_ITEM * | Parent () const | 
| void | SetParent (LIST_ITEM *aParent) | 
Private Attributes | |
| LIST_ITEM * | m_parent = nullptr | 
| std::vector< LIST_ITEM * > | m_children | 
| GROUP_TYPE | m_group_type = GROUP_TYPE::NONE | 
| unsigned int | m_group_number = 0 | 
| NETINFO_ITEM * | m_net = nullptr | 
| unsigned int | m_pad_count = 0 | 
| unsigned int | m_via_count = 0 | 
| int64_t | m_via_length = 0 | 
| int64_t | m_via_delay = 0 | 
| int64_t | m_pad_die_length = 0 | 
| int64_t | m_pad_die_delay = 0 | 
| std::map< PCB_LAYER_ID, int64_t > | m_layer_wire_length {} | 
| std::map< PCB_LAYER_ID, int64_t > | m_layer_wire_delay {} | 
| std::vector< int > | m_column_changed | 
| wxString | m_net_name | 
| wxString | m_net_class | 
| wxString | m_group_name | 
Primary data item for entries in the Net Inspector list.
This class tracks all data for a given net entry in the net inspector list.
Definition at line 32 of file pcb_net_inspector_panel_data_model.h.
      
  | 
  strong | 
| Enumerator | |
|---|---|
| NONE | |
| USER_DEFINED | |
| NETCLASS | |
Definition at line 35 of file pcb_net_inspector_panel_data_model.h.
      
  | 
  inline | 
Definition at line 42 of file pcb_net_inspector_panel_data_model.h.
References PCB_NET_INSPECTOR_PANEL::COLUMN_LAST_STATIC_COL, m_column_changed, m_group_name, m_group_number, m_group_type, and m_net_name.
Referenced by operator=(), Parent(), and SetParent().
      
  | 
  inline | 
Definition at line 51 of file pcb_net_inspector_panel_data_model.h.
References PCB_NET_INSPECTOR_PANEL::COLUMN_LAST_STATIC_COL, NETCLASS::GetHumanReadableName(), NETINFO_ITEM::GetNetClass(), NETINFO_ITEM::GetNetname(), m_column_changed, m_group_type, m_net, m_net_class, m_net_name, NONE, and UnescapeString().
      
  | 
  inline | 
Definition at line 61 of file pcb_net_inspector_panel_data_model.h.
References PCB_NET_INSPECTOR_PANEL::COLUMN_LAST_STATIC_COL, and m_column_changed.
      
  | 
  inline | 
Definition at line 321 of file pcb_net_inspector_panel_data_model.h.
References PCB_NET_INSPECTOR_PANEL::COLUMN_BOARD_LENGTH, m_column_changed, m_layer_wire_delay, and m_parent.
      
  | 
  inline | 
Definition at line 289 of file pcb_net_inspector_panel_data_model.h.
References PCB_NET_INSPECTOR_PANEL::COLUMN_BOARD_LENGTH, m_column_changed, m_layer_wire_length, and m_parent.
      
  | 
  inline | 
Definition at line 110 of file pcb_net_inspector_panel_data_model.h.
References PCB_NET_INSPECTOR_PANEL::COLUMN_PAD_COUNT, m_column_changed, m_pad_count, and m_parent.
      
  | 
  inline | 
Definition at line 381 of file pcb_net_inspector_panel_data_model.h.
References PCB_NET_INSPECTOR_PANEL::COLUMN_PAD_DIE_LENGTH, m_column_changed, m_pad_die_delay, and m_parent.
      
  | 
  inline | 
Definition at line 352 of file pcb_net_inspector_panel_data_model.h.
References PCB_NET_INSPECTOR_PANEL::COLUMN_PAD_DIE_LENGTH, m_column_changed, m_pad_die_length, and m_parent.
      
  | 
  inline | 
Definition at line 141 of file pcb_net_inspector_panel_data_model.h.
References PCB_NET_INSPECTOR_PANEL::COLUMN_VIA_COUNT, m_column_changed, m_parent, and m_via_count.
      
  | 
  inline | 
Definition at line 201 of file pcb_net_inspector_panel_data_model.h.
References PCB_NET_INSPECTOR_PANEL::COLUMN_VIA_LENGTH, m_column_changed, m_parent, and m_via_delay.
      
  | 
  inline | 
Definition at line 172 of file pcb_net_inspector_panel_data_model.h.
References PCB_NET_INSPECTOR_PANEL::COLUMN_VIA_LENGTH, m_column_changed, m_parent, and m_via_length.
      
  | 
  inline | 
Definition at line 251 of file pcb_net_inspector_panel_data_model.h.
References PCB_NET_INSPECTOR_PANEL::COLUMN_BOARD_LENGTH, and m_column_changed.
Referenced by PCB_NET_INSPECTOR_PANEL::DATA_MODEL::itemColumnChanged(), and TotalLengthChanged().
      
  | 
  inline | 
Definition at line 73 of file pcb_net_inspector_panel_data_model.h.
References m_children.
Referenced by PCB_NET_INSPECTOR_PANEL::DATA_MODEL::GetChildren(), PCB_NET_INSPECTOR_PANEL::highlightSelectedNets(), and PCB_NET_INSPECTOR_PANEL::onDeleteSelectedNet().
      
  | 
  inline | 
Definition at line 75 of file pcb_net_inspector_panel_data_model.h.
References m_children.
Referenced by PCB_NET_INSPECTOR_PANEL::DATA_MODEL::deleteItem(), PCB_NET_INSPECTOR_PANEL::DATA_MODEL::GetChildren(), and PCB_NET_INSPECTOR_PANEL::onDeleteSelectedNet().
      
  | 
  inline | 
Definition at line 74 of file pcb_net_inspector_panel_data_model.h.
References m_children.
Referenced by PCB_NET_INSPECTOR_PANEL::DATA_MODEL::GetChildren(), PCB_NET_INSPECTOR_PANEL::highlightSelectedNets(), and PCB_NET_INSPECTOR_PANEL::onDeleteSelectedNet().
      
  | 
  inline | 
Definition at line 229 of file pcb_net_inspector_panel_data_model.h.
References m_layer_wire_delay.
Referenced by PCB_NET_INSPECTOR_PANEL::DATA_MODEL::Compare(), and GetTotalDelay().
      
  | 
  inline | 
Definition at line 219 of file pcb_net_inspector_panel_data_model.h.
References m_layer_wire_length.
Referenced by PCB_NET_INSPECTOR_PANEL::DATA_MODEL::Compare(), and GetTotalLength().
      
  | 
  inline | 
Definition at line 69 of file pcb_net_inspector_panel_data_model.h.
References m_group_name.
Referenced by PCB_NET_INSPECTOR_PANEL::onDeleteSelectedNet().
      
  | 
  inline | 
Definition at line 71 of file pcb_net_inspector_panel_data_model.h.
References m_group_number.
      
  | 
  inline | 
Definition at line 70 of file pcb_net_inspector_panel_data_model.h.
References m_group_type.
      
  | 
  inline | 
Definition at line 68 of file pcb_net_inspector_panel_data_model.h.
References m_group_type, and NONE.
Referenced by PCB_NET_INSPECTOR_PANEL::DATA_MODEL::Compare(), PCB_NET_INSPECTOR_PANEL::DATA_MODEL::GetChildren(), GetNetCode(), PCB_NET_INSPECTOR_PANEL::highlightSelectedNets(), PCB_NET_INSPECTOR_PANEL::DATA_MODEL::IsContainer(), PCB_NET_INSPECTOR_PANEL::OnConfigButton(), PCB_NET_INSPECTOR_PANEL::onDeleteSelectedNet(), PCB_NET_INSPECTOR_PANEL::OnNetsListContextMenu(), and PCB_NET_INSPECTOR_PANEL::onRenameSelectedNet().
      
  | 
  inline | 
Definition at line 245 of file pcb_net_inspector_panel_data_model.h.
References m_layer_wire_delay.
Referenced by PCB_NET_INSPECTOR_PANEL::DATA_MODEL::Compare().
      
  | 
  inline | 
Definition at line 273 of file pcb_net_inspector_panel_data_model.h.
References m_layer_wire_delay.
      
  | 
  inline | 
Definition at line 239 of file pcb_net_inspector_panel_data_model.h.
References m_layer_wire_length.
Referenced by PCB_NET_INSPECTOR_PANEL::DATA_MODEL::Compare().
      
  | 
  inline | 
Definition at line 271 of file pcb_net_inspector_panel_data_model.h.
References m_layer_wire_length.
      
  | 
  inline | 
Definition at line 82 of file pcb_net_inspector_panel_data_model.h.
References m_net.
Referenced by PCB_NET_INSPECTOR_PANEL::onRenameSelectedNet().
      
  | 
  inline | 
Definition at line 90 of file pcb_net_inspector_panel_data_model.h.
References m_net_class.
Referenced by PCB_NET_INSPECTOR_PANEL::DATA_MODEL::Compare().
      
  | 
  inline | 
Definition at line 84 of file pcb_net_inspector_panel_data_model.h.
References GetIsGroup(), m_group_number, and m_net.
Referenced by PCB_NET_INSPECTOR_PANEL::buildNetsList(), and PCB_NET_INSPECTOR_PANEL::highlightSelectedNets().
      
  | 
  inline | 
Definition at line 89 of file pcb_net_inspector_panel_data_model.h.
References m_net_name.
Referenced by PCB_NET_INSPECTOR_PANEL::DATA_MODEL::Compare().
      
  | 
  inline | 
Definition at line 97 of file pcb_net_inspector_panel_data_model.h.
References m_pad_count.
Referenced by PCB_NET_INSPECTOR_PANEL::DATA_MODEL::Compare(), and SetParent().
      
  | 
  inline | 
Definition at line 370 of file pcb_net_inspector_panel_data_model.h.
References m_pad_die_delay.
Referenced by PCB_NET_INSPECTOR_PANEL::DATA_MODEL::Compare(), GetTotalDelay(), and SetParent().
      
  | 
  inline | 
Definition at line 339 of file pcb_net_inspector_panel_data_model.h.
References m_pad_die_length.
Referenced by PCB_NET_INSPECTOR_PANEL::DATA_MODEL::Compare(), GetTotalLength(), and SetParent().
      
  | 
  inline | 
Definition at line 405 of file pcb_net_inspector_panel_data_model.h.
References GetBoardWireDelay(), GetPadDieDelay(), and GetViaDelay().
Referenced by PCB_NET_INSPECTOR_PANEL::DATA_MODEL::Compare().
      
  | 
  inline | 
Definition at line 400 of file pcb_net_inspector_panel_data_model.h.
References GetBoardWireLength(), GetPadDieLength(), and GetViaLength().
Referenced by PCB_NET_INSPECTOR_PANEL::DATA_MODEL::Compare().
      
  | 
  inline | 
Definition at line 128 of file pcb_net_inspector_panel_data_model.h.
References m_via_count.
Referenced by PCB_NET_INSPECTOR_PANEL::DATA_MODEL::Compare(), and SetParent().
      
  | 
  inline | 
Definition at line 190 of file pcb_net_inspector_panel_data_model.h.
References m_via_delay.
Referenced by PCB_NET_INSPECTOR_PANEL::DATA_MODEL::Compare(), GetTotalDelay(), and SetParent().
      
  | 
  inline | 
Definition at line 159 of file pcb_net_inspector_panel_data_model.h.
References m_via_length.
Referenced by PCB_NET_INSPECTOR_PANEL::DATA_MODEL::Compare(), GetTotalLength(), and SetParent().
References LIST_ITEM().
      
  | 
  inline | 
Definition at line 99 of file pcb_net_inspector_panel_data_model.h.
References PCB_NET_INSPECTOR_PANEL::COLUMN_PAD_COUNT, and m_column_changed.
Referenced by PCB_NET_INSPECTOR_PANEL::DATA_MODEL::itemColumnChanged().
      
  | 
  inline | 
Definition at line 341 of file pcb_net_inspector_panel_data_model.h.
References PCB_NET_INSPECTOR_PANEL::COLUMN_PAD_DIE_LENGTH, and m_column_changed.
Referenced by PCB_NET_INSPECTOR_PANEL::DATA_MODEL::itemColumnChanged(), and TotalLengthChanged().
      
  | 
  inline | 
Definition at line 412 of file pcb_net_inspector_panel_data_model.h.
References LIST_ITEM(), and m_parent.
Referenced by PCB_NET_INSPECTOR_PANEL::DATA_MODEL::deleteItem(), PCB_NET_INSPECTOR_PANEL::DATA_MODEL::GetParent(), and PCB_NET_INSPECTOR_PANEL::DATA_MODEL::resortIfChanged().
      
  | 
  inline | 
Definition at line 92 of file pcb_net_inspector_panel_data_model.h.
References m_column_changed.
      
  | 
  inline | 
Definition at line 77 of file pcb_net_inspector_panel_data_model.h.
References PCB_NET_INSPECTOR_PANEL::COLUMN_LAST_STATIC_COL, and m_column_changed.
      
  | 
  inline | 
Definition at line 307 of file pcb_net_inspector_panel_data_model.h.
References m_layer_wire_delay, and m_parent.
      
  | 
  inline | 
Definition at line 253 of file pcb_net_inspector_panel_data_model.h.
References _, PCB_NET_INSPECTOR_PANEL::COLUMN_BOARD_LENGTH, m_column_changed, m_layer_wire_length, and m_parent.
      
  | 
  inline | 
Definition at line 275 of file pcb_net_inspector_panel_data_model.h.
References m_layer_wire_length, and m_parent.
      
  | 
  inline | 
Definition at line 101 of file pcb_net_inspector_panel_data_model.h.
References PCB_NET_INSPECTOR_PANEL::COLUMN_PAD_COUNT, m_column_changed, m_pad_count, and m_parent.
      
  | 
  inline | 
Definition at line 372 of file pcb_net_inspector_panel_data_model.h.
References PCB_NET_INSPECTOR_PANEL::COLUMN_PAD_DIE_LENGTH, m_column_changed, m_pad_die_delay, and m_parent.
      
  | 
  inline | 
Definition at line 343 of file pcb_net_inspector_panel_data_model.h.
References PCB_NET_INSPECTOR_PANEL::COLUMN_PAD_DIE_LENGTH, m_column_changed, m_pad_die_length, and m_parent.
      
  | 
  inline | 
Definition at line 414 of file pcb_net_inspector_panel_data_model.h.
References GetPadCount(), GetPadDieDelay(), GetPadDieLength(), GetViaCount(), GetViaDelay(), GetViaLength(), LIST_ITEM(), m_layer_wire_delay, m_layer_wire_length, and m_parent.
      
  | 
  inline | 
Definition at line 132 of file pcb_net_inspector_panel_data_model.h.
References PCB_NET_INSPECTOR_PANEL::COLUMN_VIA_COUNT, m_column_changed, m_parent, and m_via_count.
      
  | 
  inline | 
Definition at line 192 of file pcb_net_inspector_panel_data_model.h.
References PCB_NET_INSPECTOR_PANEL::COLUMN_VIA_LENGTH, m_column_changed, m_parent, and m_via_delay.
      
  | 
  inline | 
Definition at line 163 of file pcb_net_inspector_panel_data_model.h.
References PCB_NET_INSPECTOR_PANEL::COLUMN_VIA_LENGTH, m_column_changed, m_parent, and m_via_length.
      
  | 
  inline | 
Definition at line 330 of file pcb_net_inspector_panel_data_model.h.
References PCB_NET_INSPECTOR_PANEL::COLUMN_BOARD_LENGTH, m_column_changed, m_layer_wire_delay, and m_parent.
      
  | 
  inline | 
Definition at line 298 of file pcb_net_inspector_panel_data_model.h.
References PCB_NET_INSPECTOR_PANEL::COLUMN_BOARD_LENGTH, m_column_changed, m_layer_wire_length, and m_parent.
      
  | 
  inline | 
Definition at line 119 of file pcb_net_inspector_panel_data_model.h.
References PCB_NET_INSPECTOR_PANEL::COLUMN_PAD_COUNT, m_column_changed, m_pad_count, and m_parent.
      
  | 
  inline | 
Definition at line 390 of file pcb_net_inspector_panel_data_model.h.
References PCB_NET_INSPECTOR_PANEL::COLUMN_PAD_DIE_LENGTH, m_column_changed, m_pad_die_delay, and m_parent.
      
  | 
  inline | 
Definition at line 361 of file pcb_net_inspector_panel_data_model.h.
References PCB_NET_INSPECTOR_PANEL::COLUMN_PAD_DIE_LENGTH, m_column_changed, m_pad_die_length, and m_parent.
      
  | 
  inline | 
Definition at line 150 of file pcb_net_inspector_panel_data_model.h.
References PCB_NET_INSPECTOR_PANEL::COLUMN_VIA_COUNT, m_column_changed, m_parent, and m_via_count.
      
  | 
  inline | 
Definition at line 210 of file pcb_net_inspector_panel_data_model.h.
References PCB_NET_INSPECTOR_PANEL::COLUMN_VIA_LENGTH, m_column_changed, m_parent, and m_via_delay.
      
  | 
  inline | 
Definition at line 181 of file pcb_net_inspector_panel_data_model.h.
References PCB_NET_INSPECTOR_PANEL::COLUMN_VIA_LENGTH, m_column_changed, m_parent, and m_via_length.
      
  | 
  inline | 
Definition at line 407 of file pcb_net_inspector_panel_data_model.h.
References BoardWireLengthChanged(), PadDieLengthChanged(), and ViaLengthChanged().
Referenced by PCB_NET_INSPECTOR_PANEL::DATA_MODEL::itemColumnChanged().
      
  | 
  inline | 
Definition at line 130 of file pcb_net_inspector_panel_data_model.h.
References PCB_NET_INSPECTOR_PANEL::COLUMN_VIA_COUNT, and m_column_changed.
Referenced by PCB_NET_INSPECTOR_PANEL::DATA_MODEL::itemColumnChanged().
      
  | 
  inline | 
Definition at line 161 of file pcb_net_inspector_panel_data_model.h.
References PCB_NET_INSPECTOR_PANEL::COLUMN_VIA_LENGTH, and m_column_changed.
Referenced by PCB_NET_INSPECTOR_PANEL::DATA_MODEL::itemColumnChanged(), and TotalLengthChanged().
      
  | 
  private | 
Definition at line 463 of file pcb_net_inspector_panel_data_model.h.
Referenced by ChildrenBegin(), ChildrenCount(), and ChildrenEnd().
      
  | 
  private | 
Definition at line 482 of file pcb_net_inspector_panel_data_model.h.
Referenced by AddLayerWireDelay(), AddLayerWireLength(), AddPadCount(), AddPadDieDelay(), AddPadDieLength(), AddViaCount(), AddViaDelay(), AddViaLength(), BoardWireLengthChanged(), LIST_ITEM(), LIST_ITEM(), LIST_ITEM(), PadCountChanged(), PadDieLengthChanged(), ResetColumnChangedBits(), SetLayerCount(), SetLayerWireLength(), SetPadCount(), SetPadDieDelay(), SetPadDieLength(), SetViaCount(), SetViaDelay(), SetViaLength(), SubLayerWireDelay(), SubLayerWireLength(), SubPadCount(), SubPadDieDelay(), SubPadDieLength(), SubViaCount(), SubViaDelay(), SubViaLength(), ViaCountChanged(), and ViaLengthChanged().
      
  | 
  private | 
Definition at line 487 of file pcb_net_inspector_panel_data_model.h.
Referenced by GetGroupName(), and LIST_ITEM().
      
  | 
  private | 
Definition at line 466 of file pcb_net_inspector_panel_data_model.h.
Referenced by GetGroupNumber(), GetNetCode(), and LIST_ITEM().
      
  | 
  private | 
Definition at line 465 of file pcb_net_inspector_panel_data_model.h.
Referenced by GetGroupType(), GetIsGroup(), LIST_ITEM(), and LIST_ITEM().
      
  | 
  private | 
Definition at line 476 of file pcb_net_inspector_panel_data_model.h.
Referenced by AddLayerWireDelay(), GetBoardWireDelay(), GetLayerWireDelay(), GetLayerWireDelays(), SetLayerWireDelays(), SetParent(), and SubLayerWireDelay().
      
  | 
  private | 
Definition at line 475 of file pcb_net_inspector_panel_data_model.h.
Referenced by AddLayerWireLength(), GetBoardWireLength(), GetLayerWireLength(), GetLayerWireLengths(), SetLayerWireLength(), SetLayerWireLengths(), SetParent(), and SubLayerWireLength().
      
  | 
  private | 
Definition at line 467 of file pcb_net_inspector_panel_data_model.h.
Referenced by GetNet(), GetNetCode(), and LIST_ITEM().
      
  | 
  private | 
Definition at line 486 of file pcb_net_inspector_panel_data_model.h.
Referenced by GetNetclassName(), and LIST_ITEM().
      
  | 
  private | 
Definition at line 485 of file pcb_net_inspector_panel_data_model.h.
Referenced by GetNetName(), LIST_ITEM(), and LIST_ITEM().
      
  | 
  private | 
Definition at line 468 of file pcb_net_inspector_panel_data_model.h.
Referenced by AddPadCount(), GetPadCount(), SetPadCount(), and SubPadCount().
      
  | 
  private | 
Definition at line 473 of file pcb_net_inspector_panel_data_model.h.
Referenced by AddPadDieDelay(), GetPadDieDelay(), SetPadDieDelay(), and SubPadDieDelay().
      
  | 
  private | 
Definition at line 472 of file pcb_net_inspector_panel_data_model.h.
Referenced by AddPadDieLength(), GetPadDieLength(), SetPadDieLength(), and SubPadDieLength().
      
  | 
  private | 
Definition at line 462 of file pcb_net_inspector_panel_data_model.h.
Referenced by AddLayerWireDelay(), AddLayerWireLength(), AddPadCount(), AddPadDieDelay(), AddPadDieLength(), AddViaCount(), AddViaDelay(), AddViaLength(), Parent(), SetLayerWireDelays(), SetLayerWireLength(), SetLayerWireLengths(), SetPadCount(), SetPadDieDelay(), SetPadDieLength(), SetParent(), SetViaCount(), SetViaDelay(), SetViaLength(), SubLayerWireDelay(), SubLayerWireLength(), SubPadCount(), SubPadDieDelay(), SubPadDieLength(), SubViaCount(), SubViaDelay(), and SubViaLength().
      
  | 
  private | 
Definition at line 469 of file pcb_net_inspector_panel_data_model.h.
Referenced by AddViaCount(), GetViaCount(), SetViaCount(), and SubViaCount().
      
  | 
  private | 
Definition at line 471 of file pcb_net_inspector_panel_data_model.h.
Referenced by AddViaDelay(), GetViaDelay(), SetViaDelay(), and SubViaDelay().
      
  | 
  private | 
Definition at line 470 of file pcb_net_inspector_panel_data_model.h.
Referenced by AddViaLength(), GetViaLength(), SetViaLength(), and SubViaLength().