7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-26 23:56:19 +00:00
kicad/scripting
Miguel Angel Ajo 9398eb9767 std::vector and std::string items
DLIST iterator code, now we can do:

    for module in pcb.m_Modules:
    	print module.GetReference()

instead of:

    module = pcb.m_Modules

    while module:
	print module.GetReference()
	module = module.Next()

or even:
    module_list = list(pcb.m_Modules)
2012-03-19 09:36:38 +01:00
..
kicad.i std::vector and std::string items 2012-03-19 09:36:38 +01:00
python_scripting.cpp * More cleanup (common wrappers moved to scripting, instead of pcbnew/scripting) 2012-03-17 18:30:03 +01:00
python_scripting.h * More cleanup (common wrappers moved to scripting, instead of pcbnew/scripting) 2012-03-17 18:30:03 +01:00
wx_python_helpers.cpp * More cleanup (common wrappers moved to scripting, instead of pcbnew/scripting) 2012-03-17 18:30:03 +01:00
wx_python_helpers.h * More cleanup (common wrappers moved to scripting, instead of pcbnew/scripting) 2012-03-17 18:30:03 +01:00
wx.i * More cleanup (common wrappers moved to scripting, instead of pcbnew/scripting) 2012-03-17 18:30:03 +01:00