Clean up extra TODO
This commit is contained in:
parent
b4ceddbcd8
commit
ca41dc2e66
|
@ -88,15 +88,6 @@ struct LIB_PART_LESS_THAN
|
||||||
class NETLIST_EXPORTER
|
class NETLIST_EXPORTER
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
// TODO(JE) NETLISTING
|
|
||||||
#if 0
|
|
||||||
/// Used to temporarily store and filter the list of pins of a schematic component
|
|
||||||
/// when generating schematic component data in netlist (comp section). No ownership
|
|
||||||
/// of members.
|
|
||||||
/// TODO(snh): Descope this object
|
|
||||||
NETLIST_OBJECTS m_SortedComponentPinList;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/// Used for "multi parts per package" components,
|
/// Used for "multi parts per package" components,
|
||||||
/// avoids processing a lib component more than once.
|
/// avoids processing a lib component more than once.
|
||||||
UNIQUE_STRINGS m_ReferencesAlreadyFound;
|
UNIQUE_STRINGS m_ReferencesAlreadyFound;
|
||||||
|
@ -107,8 +98,13 @@ protected:
|
||||||
/// The schematic we're generating a netlist for
|
/// The schematic we're generating a netlist for
|
||||||
SCHEMATIC* m_schematic;
|
SCHEMATIC* m_schematic;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks if the given component should be processed for netlisting.
|
||||||
|
* Prevents processing multi-unit components more than once, etc.
|
||||||
|
* @param aItem is a component to check
|
||||||
|
* @param aSheetPath is the sheet to check the component for
|
||||||
|
* @return the component if it should be processed, or nullptr
|
||||||
|
*/
|
||||||
SCH_COMPONENT* findNextComponent( EDA_ITEM* aItem, SCH_SHEET_PATH* aSheetPath );
|
SCH_COMPONENT* findNextComponent( EDA_ITEM* aItem, SCH_SHEET_PATH* aSheetPath );
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
|
@ -31,8 +31,6 @@
|
||||||
#include <connection_graph.h>
|
#include <connection_graph.h>
|
||||||
#include <refdes_utils.h>
|
#include <refdes_utils.h>
|
||||||
|
|
||||||
#include <class_library.h>
|
|
||||||
#include <sch_base_frame.h>
|
|
||||||
#include <symbol_lib_table.h>
|
#include <symbol_lib_table.h>
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue