gitextract_5p2saq3a/ ├── README.md ├── SubwayTransferSystem/ │ ├── SubwayTransferSystem.pro │ ├── SubwayTransferSystem.pro.user │ ├── apphelp.cpp │ ├── apphelp.h │ ├── data/ │ │ ├── demo.txt │ │ ├── outLine.txt │ │ └── subwayLine.txt │ ├── graphics_view_zoom.cpp │ ├── graphics_view_zoom.h │ ├── html/ │ │ ├── helpAddByText.html │ │ ├── helpAddConnection.html │ │ ├── helpAddLine.html │ │ ├── helpAddStation.html │ │ ├── helpTransfer.html │ │ └── helpWatch.html │ ├── line.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── managelines.cpp │ ├── managelines.h │ ├── managelines.ui │ ├── myview.cpp │ ├── myview.h │ ├── querytransfer.cpp │ ├── querytransfer.h │ ├── querytransfer.ui │ ├── resource.qrc │ ├── station.cpp │ ├── station.h │ ├── subwaygraph.cpp │ └── subwaygraph.h ├── build-SubwayTransferSystem-Desktop_Qt_5_9_1_MinGW_32bit-Release/ │ ├── .qmake.stash │ ├── Makefile │ ├── Makefile.Debug │ ├── Makefile.Release │ ├── object_script.SubwayTransferSystem.Debug │ ├── object_script.SubwayTransferSystem.Release │ ├── release/ │ │ ├── apphelp.o │ │ ├── graphics_view_zoom.o │ │ ├── main.o │ │ ├── mainwindow.o │ │ ├── managelines.o │ │ ├── moc_apphelp.cpp │ │ ├── moc_apphelp.o │ │ ├── moc_graphics_view_zoom.cpp │ │ ├── moc_graphics_view_zoom.o │ │ ├── moc_mainwindow.cpp │ │ ├── moc_mainwindow.o │ │ ├── moc_managelines.cpp │ │ ├── moc_managelines.o │ │ ├── moc_predefs.h │ │ ├── qrc_resource.cpp │ │ ├── qrc_resource.o │ │ ├── station.o │ │ ├── subwaygraph.o │ │ └── translations/ │ │ ├── qt_bg.qm │ │ ├── qt_ca.qm │ │ ├── qt_cs.qm │ │ ├── qt_da.qm │ │ ├── qt_de.qm │ │ ├── qt_en.qm │ │ ├── qt_es.qm │ │ ├── qt_fi.qm │ │ ├── qt_fr.qm │ │ ├── qt_gd.qm │ │ ├── qt_he.qm │ │ ├── qt_hu.qm │ │ ├── qt_it.qm │ │ ├── qt_ja.qm │ │ ├── qt_ko.qm │ │ ├── qt_lv.qm │ │ ├── qt_pl.qm │ │ ├── qt_ru.qm │ │ ├── qt_sk.qm │ │ └── qt_uk.qm │ ├── ui_mainwindow.h │ └── ui_managelines.h ├── dealData/ │ ├── line.txt │ ├── main.cpp │ ├── outLine.txt │ └── readme.md ├── osmXmlParser/ │ ├── readme.md │ ├── route.osm │ ├── src/ │ │ └── osmXmlParser/ │ │ └── MyOsmParser.java │ ├── station.osm │ ├── station.txt │ └── subwayLine.osm └── 设计说明书.docx