├── .gitignore ├── BUILD.txt ├── CHANGELOG.txt ├── LICENSE.txt ├── README.txt ├── atools.pro ├── atools.qrc ├── atools_de.qm ├── atools_de.ts ├── atools_es.ts ├── atools_fr.qm ├── atools_fr.ts ├── atools_it.qm ├── atools_it.ts ├── atools_nl.ts ├── atools_pt_BR.qm ├── atools_pt_BR.ts ├── atools_zh.qm ├── atools_zh.ts ├── deployment ├── .dropbox_uploader.enc └── dropbox_uploader.sh ├── navdata.qrc ├── resources ├── json │ └── stopwords-iso.json.gz ├── navdata │ ├── navaids24.csv.gz │ └── navaids_msfs2024_extra.csv ├── sql │ └── fs │ │ ├── db │ │ ├── README.txt │ │ ├── create_ap_schema.sql │ │ ├── create_ap_schema_index.sql │ │ ├── create_boundary_schema.sql │ │ ├── create_indexes_post_load.sql │ │ ├── create_indexes_post_load_boundary.sql │ │ ├── create_meta_schema.sql │ │ ├── create_nav_schema.sql │ │ ├── create_views.sql │ │ ├── delete_duplicate_ils.sql │ │ ├── delete_duplicate_ils_fsx.sql │ │ ├── delete_duplicate_navaids.sql │ │ ├── delete_duplicate_navaids_msfs.sql │ │ ├── dfd │ │ │ ├── clean_waypoints.sql │ │ │ ├── populate_com.sql │ │ │ ├── populate_navaids.sql │ │ │ ├── populate_navaids_proc.sql │ │ │ ├── populate_parking.sql │ │ │ ├── update_airport_ils.sql │ │ │ └── update_navaids.sql │ │ ├── drop_airport.sql │ │ ├── drop_airport_facilities.sql │ │ ├── drop_approach.sql │ │ ├── drop_meta.sql │ │ ├── drop_nav.sql │ │ ├── drop_routing_search.sql │ │ ├── drop_view.sql │ │ ├── finish_airport_schema.sql │ │ ├── finish_schema.sql │ │ ├── finish_schema_drop_temp.sql │ │ ├── populate_nav_search.sql │ │ ├── update_airport.sql │ │ ├── update_airport_ils.sql │ │ ├── update_airport_ils_msfs.sql │ │ ├── update_approaches.sql │ │ ├── update_nav_ids.sql │ │ ├── update_num_ils.sql │ │ ├── update_sea_base.sql │ │ ├── update_vor.sql │ │ ├── update_wp_ids.sql │ │ └── xplane │ │ │ └── prepare_airway.sql │ │ ├── logbook │ │ ├── create_logbook_schema.sql │ │ ├── create_logbook_schema_undo.sql │ │ └── drop_logbook_schema.sql │ │ ├── online │ │ ├── create_online_schema.sql │ │ └── drop_online_schema.sql │ │ ├── track │ │ ├── create_track_schema.sql │ │ └── drop_track_schema.sql │ │ └── userdata │ │ ├── create_user_schema.sql │ │ ├── create_user_schema_undo.sql │ │ └── drop_user_schema.sql ├── wmm │ ├── EGM9615.buf │ ├── README-WMM-COEFS.txt │ └── WMM.COF └── xsd │ ├── lnmperf.xsd │ └── lnmpln.xsd ├── src ├── atools.cpp ├── atools.h ├── exception.cpp ├── exception.h ├── fs │ ├── bgl │ │ ├── ap │ │ │ ├── airport.cpp │ │ │ ├── airport.h │ │ │ ├── approach.cpp │ │ │ ├── approach.h │ │ │ ├── approachleg.cpp │ │ │ ├── approachleg.h │ │ │ ├── approachtypes.cpp │ │ │ ├── approachtypes.h │ │ │ ├── apron.cpp │ │ │ ├── apron.h │ │ │ ├── apron2.cpp │ │ │ ├── apron2.h │ │ │ ├── com.cpp │ │ │ ├── com.h │ │ │ ├── del │ │ │ │ ├── deleteairport.cpp │ │ │ │ ├── deleteairport.h │ │ │ │ ├── deletecom.cpp │ │ │ │ ├── deletecom.h │ │ │ │ ├── deleterunway.cpp │ │ │ │ ├── deleterunway.h │ │ │ │ ├── deletestart.cpp │ │ │ │ └── deletestart.h │ │ │ ├── helipad.cpp │ │ │ ├── helipad.h │ │ │ ├── jetway.cpp │ │ │ ├── jetway.h │ │ │ ├── parking.cpp │ │ │ ├── parking.h │ │ │ ├── rw │ │ │ │ ├── runway.cpp │ │ │ │ ├── runway.h │ │ │ │ ├── runwayapplights.cpp │ │ │ │ ├── runwayapplights.h │ │ │ │ ├── runwayend.cpp │ │ │ │ ├── runwayend.h │ │ │ │ ├── runwayvasi.cpp │ │ │ │ └── runwayvasi.h │ │ │ ├── sidstar.cpp │ │ │ ├── sidstar.h │ │ │ ├── start.cpp │ │ │ ├── start.h │ │ │ ├── taxipath.cpp │ │ │ ├── taxipath.h │ │ │ ├── taxipoint.cpp │ │ │ ├── taxipoint.h │ │ │ ├── transition.cpp │ │ │ └── transition.h │ │ ├── bglbase.cpp │ │ ├── bglbase.h │ │ ├── bglfile.cpp │ │ ├── bglfile.h │ │ ├── bglposition.cpp │ │ ├── bglposition.h │ │ ├── boundary.cpp │ │ ├── boundary.h │ │ ├── boundarysegment.cpp │ │ ├── boundarysegment.h │ │ ├── converter.cpp │ │ ├── converter.h │ │ ├── header.cpp │ │ ├── header.h │ │ ├── nav │ │ │ ├── airwaysegment.cpp │ │ │ ├── airwaysegment.h │ │ │ ├── airwaywaypoint.cpp │ │ │ ├── airwaywaypoint.h │ │ │ ├── dme.cpp │ │ │ ├── dme.h │ │ │ ├── glideslope.cpp │ │ │ ├── glideslope.h │ │ │ ├── ils.cpp │ │ │ ├── ils.h │ │ │ ├── ilsvor.cpp │ │ │ ├── ilsvor.h │ │ │ ├── localizer.cpp │ │ │ ├── localizer.h │ │ │ ├── marker.cpp │ │ │ ├── marker.h │ │ │ ├── navbase.cpp │ │ │ ├── navbase.h │ │ │ ├── ndb.cpp │ │ │ ├── ndb.h │ │ │ ├── tacan.cpp │ │ │ ├── tacan.h │ │ │ ├── vor.cpp │ │ │ ├── vor.h │ │ │ ├── waypoint.cpp │ │ │ └── waypoint.h │ │ ├── nl │ │ │ ├── namelist.cpp │ │ │ ├── namelist.h │ │ │ ├── namelistentry.cpp │ │ │ └── namelistentry.h │ │ ├── record.cpp │ │ ├── record.h │ │ ├── recordtypes.cpp │ │ ├── recordtypes.h │ │ ├── section.cpp │ │ ├── section.h │ │ ├── sectiontype.cpp │ │ ├── sectiontype.h │ │ ├── subsection.cpp │ │ ├── subsection.h │ │ ├── surface.cpp │ │ ├── surface.h │ │ ├── util.cpp │ │ └── util.h │ ├── common │ │ ├── airportindex.cpp │ │ ├── airportindex.h │ │ ├── binarygeometry.cpp │ │ ├── binarygeometry.h │ │ ├── binarymsageometry.cpp │ │ ├── binarymsageometry.h │ │ ├── globereader.cpp │ │ ├── globereader.h │ │ ├── magdecreader.cpp │ │ ├── magdecreader.h │ │ ├── metadatawriter.cpp │ │ ├── metadatawriter.h │ │ ├── morareader.cpp │ │ ├── morareader.h │ │ ├── procedurewriter.cpp │ │ ├── procedurewriter.h │ │ ├── xpgeometry.cpp │ │ └── xpgeometry.h │ ├── db │ │ ├── airwayresolver.cpp │ │ ├── airwayresolver.h │ │ ├── ap │ │ │ ├── airportfilewriter.cpp │ │ │ ├── airportfilewriter.h │ │ │ ├── airportwriter.cpp │ │ │ ├── airportwriter.h │ │ │ ├── approachlegwriter.cpp │ │ │ ├── approachlegwriter.h │ │ │ ├── approachwriter.cpp │ │ │ ├── approachwriter.h │ │ │ ├── apronwriter.cpp │ │ │ ├── apronwriter.h │ │ │ ├── comwriter.cpp │ │ │ ├── comwriter.h │ │ │ ├── deleteprocessor.cpp │ │ │ ├── deleteprocessor.h │ │ │ ├── helipadwriter.cpp │ │ │ ├── helipadwriter.h │ │ │ ├── legbasewriter.cpp │ │ │ ├── legbasewriter.h │ │ │ ├── parkingwriter.cpp │ │ │ ├── parkingwriter.h │ │ │ ├── rw │ │ │ │ ├── runwayendwriter.cpp │ │ │ │ ├── runwayendwriter.h │ │ │ │ ├── runwaywriter.cpp │ │ │ │ └── runwaywriter.h │ │ │ ├── sidstarapproachlegwriter.cpp │ │ │ ├── sidstarapproachlegwriter.h │ │ │ ├── sidstartransitionlegwriter.cpp │ │ │ ├── sidstartransitionlegwriter.h │ │ │ ├── sidstartransitionwriter.cpp │ │ │ ├── sidstartransitionwriter.h │ │ │ ├── sidstarwriter.cpp │ │ │ ├── sidstarwriter.h │ │ │ ├── startwriter.cpp │ │ │ ├── startwriter.h │ │ │ ├── taxipathwriter.cpp │ │ │ ├── taxipathwriter.h │ │ │ ├── transitionlegwriter.cpp │ │ │ ├── transitionlegwriter.h │ │ │ ├── transitionwriter.cpp │ │ │ └── transitionwriter.h │ │ ├── databasemeta.cpp │ │ ├── databasemeta.h │ │ ├── datawriter.cpp │ │ ├── datawriter.h │ │ ├── meta │ │ │ ├── bglfilewriter.cpp │ │ │ ├── bglfilewriter.h │ │ │ ├── sceneryareawriter.cpp │ │ │ └── sceneryareawriter.h │ │ ├── nav │ │ │ ├── airwaysegmentwriter.cpp │ │ │ ├── airwaysegmentwriter.h │ │ │ ├── boundarywriter.cpp │ │ │ ├── boundarywriter.h │ │ │ ├── ilswriter.cpp │ │ │ ├── ilswriter.h │ │ │ ├── markerwriter.cpp │ │ │ ├── markerwriter.h │ │ │ ├── ndbwriter.cpp │ │ │ ├── ndbwriter.h │ │ │ ├── tacanwriter.cpp │ │ │ ├── tacanwriter.h │ │ │ ├── vorwriter.cpp │ │ │ ├── vorwriter.h │ │ │ ├── waypointwriter.cpp │ │ │ └── waypointwriter.h │ │ ├── runwayindex.cpp │ │ ├── runwayindex.h │ │ ├── writerbase.h │ │ ├── writerbasebasic.cpp │ │ └── writerbasebasic.h │ ├── dfd │ │ ├── dfdcompiler.cpp │ │ └── dfdcompiler.h │ ├── fspaths.cpp │ ├── fspaths.h │ ├── gpx │ │ ├── gpxio.cpp │ │ ├── gpxio.h │ │ ├── gpxtypes.cpp │ │ └── gpxtypes.h │ ├── navdatabase.cpp │ ├── navdatabase.h │ ├── navdatabaseerrors.cpp │ ├── navdatabaseerrors.h │ ├── navdatabaseflags.cpp │ ├── navdatabaseflags.h │ ├── navdatabaseoptions.cpp │ ├── navdatabaseoptions.h │ ├── navdatabaseprogress.cpp │ ├── navdatabaseprogress.h │ ├── ns │ │ ├── navserver.cpp │ │ ├── navserver.h │ │ ├── navservercommon.cpp │ │ ├── navservercommon.h │ │ ├── navserverworker.cpp │ │ └── navserverworker.h │ ├── online │ │ ├── onlinedatamanager.cpp │ │ ├── onlinedatamanager.h │ │ ├── onlinetextparser.cpp │ │ ├── onlinetypes.cpp │ │ ├── onlinetypes.h │ │ ├── statustextparser.cpp │ │ ├── statustextparser.h │ │ ├── whazzuptextparser.cpp │ │ └── whazzuptextparser.h │ ├── perf │ │ ├── aircraftperf.cpp │ │ ├── aircraftperf.h │ │ ├── aircraftperfconstants.cpp │ │ ├── aircraftperfconstants.h │ │ ├── aircraftperfhandler.cpp │ │ └── aircraftperfhandler.h │ ├── pln │ │ ├── flightplan.cpp │ │ ├── flightplan.h │ │ ├── flightplanconstants.cpp │ │ ├── flightplanconstants.h │ │ ├── flightplanentry.cpp │ │ ├── flightplanentry.h │ │ ├── flightplanio.cpp │ │ └── flightplanio.h │ ├── progresshandler.cpp │ ├── progresshandler.h │ ├── sc │ │ ├── connecthandler.cpp │ │ ├── connecthandler.h │ │ ├── datareaderthread.cpp │ │ ├── datareaderthread.h │ │ ├── db │ │ │ ├── simconnectairport.cpp │ │ │ ├── simconnectairport.h │ │ │ ├── simconnectid.cpp │ │ │ ├── simconnectid.h │ │ │ ├── simconnectloader.cpp │ │ │ ├── simconnectloader.h │ │ │ ├── simconnectnav.cpp │ │ │ ├── simconnectnav.h │ │ │ ├── simconnectwriter.cpp │ │ │ └── simconnectwriter.h │ │ ├── simconnectaircraft.cpp │ │ ├── simconnectaircraft.h │ │ ├── simconnectapi.cpp │ │ ├── simconnectapi.h │ │ ├── simconnectdata.cpp │ │ ├── simconnectdata.h │ │ ├── simconnectdatabase.cpp │ │ ├── simconnectdatabase.h │ │ ├── simconnectdummy.cpp │ │ ├── simconnectdummy.h │ │ ├── simconnecthandler.cpp │ │ ├── simconnecthandler.h │ │ ├── simconnectreply.cpp │ │ ├── simconnectreply.h │ │ ├── simconnecttypes.cpp │ │ ├── simconnecttypes.h │ │ ├── simconnectuseraircraft.cpp │ │ ├── simconnectuseraircraft.h │ │ ├── weatherrequest.cpp │ │ ├── weatherrequest.h │ │ ├── xpconnecthandler.cpp │ │ └── xpconnecthandler.h │ ├── scenery │ │ ├── addoncfg.cpp │ │ ├── addoncfg.h │ │ ├── addoncomponent.cpp │ │ ├── addoncomponent.h │ │ ├── addonpackage.cpp │ │ ├── addonpackage.h │ │ ├── aircraftindex.cpp │ │ ├── aircraftindex.h │ │ ├── contentxml.cpp │ │ ├── contentxml.h │ │ ├── fileresolver.cpp │ │ ├── fileresolver.h │ │ ├── languagejson.cpp │ │ ├── languagejson.h │ │ ├── layoutjson.cpp │ │ ├── layoutjson.h │ │ ├── manifestjson.cpp │ │ ├── manifestjson.h │ │ ├── materiallib.cpp │ │ ├── materiallib.h │ │ ├── sceneryarea.cpp │ │ ├── sceneryarea.h │ │ ├── scenerycfg.cpp │ │ └── scenerycfg.h │ ├── userdata │ │ ├── airspacereaderbase.cpp │ │ ├── airspacereaderbase.h │ │ ├── airspacereaderivao.cpp │ │ ├── airspacereaderivao.h │ │ ├── airspacereaderopenair.cpp │ │ ├── airspacereaderopenair.h │ │ ├── airspacereadervatsim.cpp │ │ ├── airspacereadervatsim.h │ │ ├── logdatamanager.cpp │ │ ├── logdatamanager.h │ │ ├── userdatamanager.cpp │ │ └── userdatamanager.h │ ├── util │ │ ├── coordinates.cpp │ │ ├── coordinates.h │ │ ├── fsutil.cpp │ │ ├── fsutil.h │ │ ├── morsecode.cpp │ │ ├── morsecode.h │ │ ├── tacanfrequencies.cpp │ │ └── tacanfrequencies.h │ ├── weather │ │ ├── metar.cpp │ │ ├── metar.h │ │ ├── metarindex.cpp │ │ ├── metarindex.h │ │ ├── metarparser.cpp │ │ ├── metarparser.h │ │ ├── noaaweatherdownloader.cpp │ │ ├── noaaweatherdownloader.h │ │ ├── weatherdownloadbase.cpp │ │ ├── weatherdownloadbase.h │ │ ├── weathernetdownload.cpp │ │ ├── weathernetdownload.h │ │ ├── weathertypes.cpp │ │ ├── weathertypes.h │ │ ├── xpweatherreader.cpp │ │ └── xpweatherreader.h │ └── xp │ │ ├── scenerypacks.cpp │ │ ├── scenerypacks.h │ │ ├── xpairportmsareader.cpp │ │ ├── xpairportmsareader.h │ │ ├── xpairportreader.cpp │ │ ├── xpairportreader.h │ │ ├── xpairspacereader.cpp │ │ ├── xpairspacereader.h │ │ ├── xpairwaypostprocess.cpp │ │ ├── xpairwaypostprocess.h │ │ ├── xpairwayreader.cpp │ │ ├── xpairwayreader.h │ │ ├── xpcifpreader.cpp │ │ ├── xpcifpreader.h │ │ ├── xpconstants.cpp │ │ ├── xpconstants.h │ │ ├── xpdatacompiler.cpp │ │ ├── xpdatacompiler.h │ │ ├── xpfixreader.cpp │ │ ├── xpfixreader.h │ │ ├── xpholdingreader.cpp │ │ ├── xpholdingreader.h │ │ ├── xpmorareader.cpp │ │ ├── xpmorareader.h │ │ ├── xpnavreader.cpp │ │ ├── xpnavreader.h │ │ ├── xpreader.cpp │ │ └── xpreader.h ├── g2clib │ ├── CHANGES │ ├── README │ ├── cmplxpack.c │ ├── compack.c │ ├── comunpack.c │ ├── dec_jpeg2000.c │ ├── dec_png.c │ ├── drstemplates.c │ ├── drstemplates.h │ ├── enc_jpeg2000.c │ ├── enc_png.c │ ├── g2_addfield.c │ ├── g2_addgrid.c │ ├── g2_addlocal.c │ ├── g2_create.c │ ├── g2_free.c │ ├── g2_getfld.c │ ├── g2_gribend.c │ ├── g2_info.c │ ├── g2_miss.c │ ├── g2_unpack1.c │ ├── g2_unpack2.c │ ├── g2_unpack3.c │ ├── g2_unpack4.c │ ├── g2_unpack5.c │ ├── g2_unpack6.c │ ├── g2_unpack7.c │ ├── gbits.c │ ├── getdim.c │ ├── getpoly.c │ ├── grib2.h │ ├── grib2c.doc │ ├── gridtemplates.c │ ├── gridtemplates.h │ ├── int_power.c │ ├── jpcpack.c │ ├── jpcunpack.c │ ├── makefile │ ├── misspack.c │ ├── mkieee.c │ ├── pack_gp.c │ ├── pdstemplates.c │ ├── pdstemplates.h │ ├── pngpack.c │ ├── pngunpack.c │ ├── rdieee.c │ ├── reduce.c │ ├── seekgb.c │ ├── simpack.c │ ├── simunpack.c │ ├── specpack.c │ └── specunpack.c ├── geo │ ├── calculations.cpp │ ├── calculations.h │ ├── line.cpp │ ├── line.h │ ├── linestring.cpp │ ├── linestring.h │ ├── nanoflann.h │ ├── point3d.cpp │ ├── point3d.h │ ├── pos.cpp │ ├── pos.h │ ├── rect.cpp │ ├── rect.h │ ├── spatialindex.cpp │ └── spatialindex.h ├── grib │ ├── gribcommon.cpp │ ├── gribcommon.h │ ├── gribdownloader.cpp │ ├── gribdownloader.h │ ├── gribreader.cpp │ ├── gribreader.h │ ├── windquery.cpp │ ├── windquery.h │ ├── windtypes.cpp │ └── windtypes.h ├── gui │ ├── actionbuttonhandler.cpp │ ├── actionbuttonhandler.h │ ├── actionstatesaver.cpp │ ├── actionstatesaver.h │ ├── actiontextsaver.cpp │ ├── actiontextsaver.h │ ├── actiontool.cpp │ ├── actiontool.h │ ├── application.cpp │ ├── application.h │ ├── choicedialog.cpp │ ├── choicedialog.h │ ├── choicedialog.ui │ ├── clicktooltiphandler.cpp │ ├── clicktooltiphandler.h │ ├── consoleapplication.cpp │ ├── consoleapplication.h │ ├── dataexchange.cpp │ ├── dataexchange.h │ ├── desktopservices.cpp │ ├── desktopservices.h │ ├── dialog.cpp │ ├── dialog.h │ ├── dockwidgethandler.cpp │ ├── dockwidgethandler.h │ ├── errorhandler.cpp │ ├── errorhandler.h │ ├── filehistoryhandler.cpp │ ├── filehistoryhandler.h │ ├── griddelegate.cpp │ ├── griddelegate.h │ ├── helphandler.cpp │ ├── helphandler.h │ ├── itemviewzoomhandler.cpp │ ├── itemviewzoomhandler.h │ ├── listwidgetindex.cpp │ ├── listwidgetindex.h │ ├── mapposhistory.cpp │ ├── mapposhistory.h │ ├── messagebox.cpp │ ├── messagebox.h │ ├── messagebox.ui │ ├── palettesettings.cpp │ ├── palettesettings.h │ ├── signalblocker.cpp │ ├── signalblocker.h │ ├── sqlquerydialog.cpp │ ├── sqlquerydialog.h │ ├── sqlquerydialog.ui │ ├── tabwidgethandler.cpp │ ├── tabwidgethandler.h │ ├── tools.cpp │ ├── tools.h │ ├── translator.cpp │ ├── translator.h │ ├── treedialog.cpp │ ├── treedialog.h │ ├── treedialog.ui │ ├── widgetstate.cpp │ ├── widgetstate.h │ ├── widgetutil.cpp │ └── widgetutil.h ├── httpserver │ ├── httpconnectionhandler.cpp │ ├── httpconnectionhandler.h │ ├── httpconnectionhandlerpool.cpp │ ├── httpconnectionhandlerpool.h │ ├── httpcookie.cpp │ ├── httpcookie.h │ ├── httpglobal.cpp │ ├── httpglobal.h │ ├── httplistener.cpp │ ├── httplistener.h │ ├── httprequest.cpp │ ├── httprequest.h │ ├── httprequesthandler.cpp │ ├── httprequesthandler.h │ ├── httpresponse.cpp │ ├── httpresponse.h │ ├── httpsession.cpp │ ├── httpsession.h │ ├── httpsessionstore.cpp │ ├── httpsessionstore.h │ ├── readme.txt │ ├── staticfilecontroller.cpp │ └── staticfilecontroller.h ├── io │ ├── abstractinireader.cpp │ ├── abstractinireader.h │ ├── binarystream.cpp │ ├── binarystream.h │ ├── binaryutil.cpp │ ├── binaryutil.h │ ├── fileroller.cpp │ ├── fileroller.h │ ├── inireader.cpp │ ├── inireader.h │ ├── tempfile.cpp │ └── tempfile.h ├── json │ └── nlohmann │ │ └── json.hpp ├── logging │ ├── loggingconfig.cpp │ ├── loggingconfig.h │ ├── loggingguiabort.cpp │ ├── loggingguiabort.h │ ├── logginghandler.cpp │ ├── logginghandler.h │ ├── loggingtypes.h │ ├── loggingutil.cpp │ └── loggingutil.h ├── routing │ ├── routefinder.cpp │ ├── routefinder.h │ ├── routenetwork.cpp │ ├── routenetwork.h │ ├── routenetworkloader.cpp │ ├── routenetworkloader.h │ ├── routenetworktypes.cpp │ └── routenetworktypes.h ├── settings │ ├── settings.cpp │ └── settings.h ├── sql │ ├── datamanagerbase.cpp │ ├── datamanagerbase.h │ ├── sqlcolumn.cpp │ ├── sqlcolumn.h │ ├── sqldatabase.cpp │ ├── sqldatabase.h │ ├── sqlexception.cpp │ ├── sqlexception.h │ ├── sqlexport.cpp │ ├── sqlexport.h │ ├── sqlquery.cpp │ ├── sqlquery.h │ ├── sqlrecord.cpp │ ├── sqlrecord.h │ ├── sqlscript.cpp │ ├── sqlscript.h │ ├── sqltransaction.cpp │ ├── sqltransaction.h │ ├── sqltypes.h │ ├── sqlutil.cpp │ └── sqlutil.h ├── templateengine │ ├── readme.txt │ ├── template.cpp │ ├── template.h │ ├── templatecache.cpp │ ├── templatecache.h │ ├── templateglobal.h │ ├── templateloader.cpp │ └── templateloader.h ├── track │ ├── trackdownloader.cpp │ ├── trackdownloader.h │ ├── trackreader.cpp │ ├── trackreader.h │ ├── tracktypes.cpp │ └── tracktypes.h ├── util │ ├── average.cpp │ ├── average.h │ ├── contextsaver.cpp │ ├── contextsaver.h │ ├── crashhandler.cpp │ ├── crashhandler.h │ ├── csvfilereader.cpp │ ├── csvfilereader.h │ ├── csvreader.cpp │ ├── csvreader.h │ ├── filechecker.cpp │ ├── filechecker.h │ ├── fileoperations.cpp │ ├── fileoperations.h │ ├── filesystemwatcher.cpp │ ├── filesystemwatcher.h │ ├── flags.cpp │ ├── flags.h │ ├── heap.cpp │ ├── heap.h │ ├── htmlbuilder.cpp │ ├── htmlbuilder.h │ ├── htmlbuilderflags.cpp │ ├── htmlbuilderflags.h │ ├── httpdownloader.cpp │ ├── httpdownloader.h │ ├── locker.cpp │ ├── locker.h │ ├── paintercontextsaver.cpp │ ├── paintercontextsaver.h │ ├── polygontools.cpp │ ├── polygontools.h │ ├── properties.cpp │ ├── properties.h │ ├── props.cpp │ ├── props.h │ ├── roundedpolygon.cpp │ ├── roundedpolygon.h │ ├── signalhandler.cpp │ ├── signalhandler.h │ ├── simplecrypt.cpp │ ├── simplecrypt.h │ ├── str.cpp │ ├── str.h │ ├── timedcache.cpp │ ├── timedcache.h │ ├── updatecheck.cpp │ ├── updatecheck.h │ ├── updatechecktypes.cpp │ ├── updatechecktypes.h │ ├── version.cpp │ ├── version.h │ ├── xmlstream.cpp │ └── xmlstream.h ├── win │ ├── activationcontext.cpp │ └── activationcontext.h ├── wmm │ ├── GeomagnetismHeader.h │ ├── GeomagnetismLibrary.c │ ├── WMM_README.txt │ ├── magdectool.cpp │ └── magdectool.h ├── zip │ ├── gzip.cpp │ ├── gzip.h │ ├── zip.cpp │ ├── zipreader.h │ └── zipwriter.h └── zlib │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── FAQ │ ├── INDEX │ ├── LICENSE │ ├── Makefile │ ├── Makefile.in │ ├── README │ ├── adler32.c │ ├── compress.c │ ├── configure │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── make_vms.com │ ├── treebuild.xml │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── zconf.h │ ├── zconf.h.cmakein │ ├── zconf.h.in │ ├── zlib.3 │ ├── zlib.3.pdf │ ├── zlib.h │ ├── zlib.map │ ├── zlib.pc.cmakein │ ├── zlib.pc.in │ ├── zlib2ansi │ ├── zutil.c │ └── zutil.h └── uncrustify.cfg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/BUILD.txt -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/README.txt -------------------------------------------------------------------------------- /atools.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/atools.pro -------------------------------------------------------------------------------- /atools.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/atools.qrc -------------------------------------------------------------------------------- /atools_de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/atools_de.qm -------------------------------------------------------------------------------- /atools_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/atools_de.ts -------------------------------------------------------------------------------- /atools_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/atools_es.ts -------------------------------------------------------------------------------- /atools_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/atools_fr.qm -------------------------------------------------------------------------------- /atools_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/atools_fr.ts -------------------------------------------------------------------------------- /atools_it.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/atools_it.qm -------------------------------------------------------------------------------- /atools_it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/atools_it.ts -------------------------------------------------------------------------------- /atools_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/atools_nl.ts -------------------------------------------------------------------------------- /atools_pt_BR.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/atools_pt_BR.qm -------------------------------------------------------------------------------- /atools_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/atools_pt_BR.ts -------------------------------------------------------------------------------- /atools_zh.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/atools_zh.qm -------------------------------------------------------------------------------- /atools_zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/atools_zh.ts -------------------------------------------------------------------------------- /deployment/.dropbox_uploader.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/deployment/.dropbox_uploader.enc -------------------------------------------------------------------------------- /deployment/dropbox_uploader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/deployment/dropbox_uploader.sh -------------------------------------------------------------------------------- /navdata.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/navdata.qrc -------------------------------------------------------------------------------- /resources/json/stopwords-iso.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/json/stopwords-iso.json.gz -------------------------------------------------------------------------------- /resources/navdata/navaids24.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/navdata/navaids24.csv.gz -------------------------------------------------------------------------------- /resources/navdata/navaids_msfs2024_extra.csv: -------------------------------------------------------------------------------- 1 | IABC,LI,V 2 | -------------------------------------------------------------------------------- /resources/sql/fs/db/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/README.txt -------------------------------------------------------------------------------- /resources/sql/fs/db/create_ap_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/create_ap_schema.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/create_ap_schema_index.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/create_ap_schema_index.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/create_boundary_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/create_boundary_schema.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/create_indexes_post_load.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/create_indexes_post_load.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/create_indexes_post_load_boundary.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/create_indexes_post_load_boundary.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/create_meta_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/create_meta_schema.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/create_nav_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/create_nav_schema.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/create_views.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/create_views.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/delete_duplicate_ils.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/delete_duplicate_ils.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/delete_duplicate_ils_fsx.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/delete_duplicate_ils_fsx.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/delete_duplicate_navaids.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/delete_duplicate_navaids.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/delete_duplicate_navaids_msfs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/delete_duplicate_navaids_msfs.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/dfd/clean_waypoints.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/dfd/clean_waypoints.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/dfd/populate_com.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/dfd/populate_com.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/dfd/populate_navaids.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/dfd/populate_navaids.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/dfd/populate_navaids_proc.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/dfd/populate_navaids_proc.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/dfd/populate_parking.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/dfd/populate_parking.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/dfd/update_airport_ils.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/dfd/update_airport_ils.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/dfd/update_navaids.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/dfd/update_navaids.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/drop_airport.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/drop_airport.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/drop_airport_facilities.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/drop_airport_facilities.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/drop_approach.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/drop_approach.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/drop_meta.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/drop_meta.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/drop_nav.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/drop_nav.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/drop_routing_search.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/drop_routing_search.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/drop_view.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/drop_view.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/finish_airport_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/finish_airport_schema.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/finish_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/finish_schema.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/finish_schema_drop_temp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/finish_schema_drop_temp.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/populate_nav_search.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/populate_nav_search.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/update_airport.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/update_airport.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/update_airport_ils.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/update_airport_ils.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/update_airport_ils_msfs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/update_airport_ils_msfs.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/update_approaches.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/update_approaches.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/update_nav_ids.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/update_nav_ids.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/update_num_ils.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/update_num_ils.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/update_sea_base.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/update_sea_base.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/update_vor.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/update_vor.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/update_wp_ids.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/update_wp_ids.sql -------------------------------------------------------------------------------- /resources/sql/fs/db/xplane/prepare_airway.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/db/xplane/prepare_airway.sql -------------------------------------------------------------------------------- /resources/sql/fs/logbook/create_logbook_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/logbook/create_logbook_schema.sql -------------------------------------------------------------------------------- /resources/sql/fs/logbook/create_logbook_schema_undo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/logbook/create_logbook_schema_undo.sql -------------------------------------------------------------------------------- /resources/sql/fs/logbook/drop_logbook_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/logbook/drop_logbook_schema.sql -------------------------------------------------------------------------------- /resources/sql/fs/online/create_online_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/online/create_online_schema.sql -------------------------------------------------------------------------------- /resources/sql/fs/online/drop_online_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/online/drop_online_schema.sql -------------------------------------------------------------------------------- /resources/sql/fs/track/create_track_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/track/create_track_schema.sql -------------------------------------------------------------------------------- /resources/sql/fs/track/drop_track_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/track/drop_track_schema.sql -------------------------------------------------------------------------------- /resources/sql/fs/userdata/create_user_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/userdata/create_user_schema.sql -------------------------------------------------------------------------------- /resources/sql/fs/userdata/create_user_schema_undo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/userdata/create_user_schema_undo.sql -------------------------------------------------------------------------------- /resources/sql/fs/userdata/drop_user_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/sql/fs/userdata/drop_user_schema.sql -------------------------------------------------------------------------------- /resources/wmm/EGM9615.buf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/wmm/EGM9615.buf -------------------------------------------------------------------------------- /resources/wmm/README-WMM-COEFS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/wmm/README-WMM-COEFS.txt -------------------------------------------------------------------------------- /resources/wmm/WMM.COF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/wmm/WMM.COF -------------------------------------------------------------------------------- /resources/xsd/lnmperf.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/xsd/lnmperf.xsd -------------------------------------------------------------------------------- /resources/xsd/lnmpln.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/resources/xsd/lnmpln.xsd -------------------------------------------------------------------------------- /src/atools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/atools.cpp -------------------------------------------------------------------------------- /src/atools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/atools.h -------------------------------------------------------------------------------- /src/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/exception.cpp -------------------------------------------------------------------------------- /src/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/exception.h -------------------------------------------------------------------------------- /src/fs/bgl/ap/airport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/airport.cpp -------------------------------------------------------------------------------- /src/fs/bgl/ap/airport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/airport.h -------------------------------------------------------------------------------- /src/fs/bgl/ap/approach.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/approach.cpp -------------------------------------------------------------------------------- /src/fs/bgl/ap/approach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/approach.h -------------------------------------------------------------------------------- /src/fs/bgl/ap/approachleg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/approachleg.cpp -------------------------------------------------------------------------------- /src/fs/bgl/ap/approachleg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/approachleg.h -------------------------------------------------------------------------------- /src/fs/bgl/ap/approachtypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/approachtypes.cpp -------------------------------------------------------------------------------- /src/fs/bgl/ap/approachtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/approachtypes.h -------------------------------------------------------------------------------- /src/fs/bgl/ap/apron.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/apron.cpp -------------------------------------------------------------------------------- /src/fs/bgl/ap/apron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/apron.h -------------------------------------------------------------------------------- /src/fs/bgl/ap/apron2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/apron2.cpp -------------------------------------------------------------------------------- /src/fs/bgl/ap/apron2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/apron2.h -------------------------------------------------------------------------------- /src/fs/bgl/ap/com.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/com.cpp -------------------------------------------------------------------------------- /src/fs/bgl/ap/com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/com.h -------------------------------------------------------------------------------- /src/fs/bgl/ap/del/deleteairport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/del/deleteairport.cpp -------------------------------------------------------------------------------- /src/fs/bgl/ap/del/deleteairport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/del/deleteairport.h -------------------------------------------------------------------------------- /src/fs/bgl/ap/del/deletecom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/del/deletecom.cpp -------------------------------------------------------------------------------- /src/fs/bgl/ap/del/deletecom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/del/deletecom.h -------------------------------------------------------------------------------- /src/fs/bgl/ap/del/deleterunway.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/del/deleterunway.cpp -------------------------------------------------------------------------------- /src/fs/bgl/ap/del/deleterunway.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/del/deleterunway.h -------------------------------------------------------------------------------- /src/fs/bgl/ap/del/deletestart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/del/deletestart.cpp -------------------------------------------------------------------------------- /src/fs/bgl/ap/del/deletestart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/del/deletestart.h -------------------------------------------------------------------------------- /src/fs/bgl/ap/helipad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/helipad.cpp -------------------------------------------------------------------------------- /src/fs/bgl/ap/helipad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/helipad.h -------------------------------------------------------------------------------- /src/fs/bgl/ap/jetway.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/jetway.cpp -------------------------------------------------------------------------------- /src/fs/bgl/ap/jetway.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/jetway.h -------------------------------------------------------------------------------- /src/fs/bgl/ap/parking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/parking.cpp -------------------------------------------------------------------------------- /src/fs/bgl/ap/parking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/parking.h -------------------------------------------------------------------------------- /src/fs/bgl/ap/rw/runway.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/rw/runway.cpp -------------------------------------------------------------------------------- /src/fs/bgl/ap/rw/runway.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/rw/runway.h -------------------------------------------------------------------------------- /src/fs/bgl/ap/rw/runwayapplights.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/rw/runwayapplights.cpp -------------------------------------------------------------------------------- /src/fs/bgl/ap/rw/runwayapplights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/rw/runwayapplights.h -------------------------------------------------------------------------------- /src/fs/bgl/ap/rw/runwayend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/rw/runwayend.cpp -------------------------------------------------------------------------------- /src/fs/bgl/ap/rw/runwayend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/rw/runwayend.h -------------------------------------------------------------------------------- /src/fs/bgl/ap/rw/runwayvasi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/rw/runwayvasi.cpp -------------------------------------------------------------------------------- /src/fs/bgl/ap/rw/runwayvasi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/rw/runwayvasi.h -------------------------------------------------------------------------------- /src/fs/bgl/ap/sidstar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/sidstar.cpp -------------------------------------------------------------------------------- /src/fs/bgl/ap/sidstar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/sidstar.h -------------------------------------------------------------------------------- /src/fs/bgl/ap/start.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/start.cpp -------------------------------------------------------------------------------- /src/fs/bgl/ap/start.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/start.h -------------------------------------------------------------------------------- /src/fs/bgl/ap/taxipath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/taxipath.cpp -------------------------------------------------------------------------------- /src/fs/bgl/ap/taxipath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/taxipath.h -------------------------------------------------------------------------------- /src/fs/bgl/ap/taxipoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/taxipoint.cpp -------------------------------------------------------------------------------- /src/fs/bgl/ap/taxipoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/taxipoint.h -------------------------------------------------------------------------------- /src/fs/bgl/ap/transition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/transition.cpp -------------------------------------------------------------------------------- /src/fs/bgl/ap/transition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/ap/transition.h -------------------------------------------------------------------------------- /src/fs/bgl/bglbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/bglbase.cpp -------------------------------------------------------------------------------- /src/fs/bgl/bglbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/bglbase.h -------------------------------------------------------------------------------- /src/fs/bgl/bglfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/bglfile.cpp -------------------------------------------------------------------------------- /src/fs/bgl/bglfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/bglfile.h -------------------------------------------------------------------------------- /src/fs/bgl/bglposition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/bglposition.cpp -------------------------------------------------------------------------------- /src/fs/bgl/bglposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/bglposition.h -------------------------------------------------------------------------------- /src/fs/bgl/boundary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/boundary.cpp -------------------------------------------------------------------------------- /src/fs/bgl/boundary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/boundary.h -------------------------------------------------------------------------------- /src/fs/bgl/boundarysegment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/boundarysegment.cpp -------------------------------------------------------------------------------- /src/fs/bgl/boundarysegment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/boundarysegment.h -------------------------------------------------------------------------------- /src/fs/bgl/converter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/converter.cpp -------------------------------------------------------------------------------- /src/fs/bgl/converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/converter.h -------------------------------------------------------------------------------- /src/fs/bgl/header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/header.cpp -------------------------------------------------------------------------------- /src/fs/bgl/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/header.h -------------------------------------------------------------------------------- /src/fs/bgl/nav/airwaysegment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/nav/airwaysegment.cpp -------------------------------------------------------------------------------- /src/fs/bgl/nav/airwaysegment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/nav/airwaysegment.h -------------------------------------------------------------------------------- /src/fs/bgl/nav/airwaywaypoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/nav/airwaywaypoint.cpp -------------------------------------------------------------------------------- /src/fs/bgl/nav/airwaywaypoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/nav/airwaywaypoint.h -------------------------------------------------------------------------------- /src/fs/bgl/nav/dme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/nav/dme.cpp -------------------------------------------------------------------------------- /src/fs/bgl/nav/dme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/nav/dme.h -------------------------------------------------------------------------------- /src/fs/bgl/nav/glideslope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/nav/glideslope.cpp -------------------------------------------------------------------------------- /src/fs/bgl/nav/glideslope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/nav/glideslope.h -------------------------------------------------------------------------------- /src/fs/bgl/nav/ils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/nav/ils.cpp -------------------------------------------------------------------------------- /src/fs/bgl/nav/ils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/nav/ils.h -------------------------------------------------------------------------------- /src/fs/bgl/nav/ilsvor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/nav/ilsvor.cpp -------------------------------------------------------------------------------- /src/fs/bgl/nav/ilsvor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/nav/ilsvor.h -------------------------------------------------------------------------------- /src/fs/bgl/nav/localizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/nav/localizer.cpp -------------------------------------------------------------------------------- /src/fs/bgl/nav/localizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/nav/localizer.h -------------------------------------------------------------------------------- /src/fs/bgl/nav/marker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/nav/marker.cpp -------------------------------------------------------------------------------- /src/fs/bgl/nav/marker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/nav/marker.h -------------------------------------------------------------------------------- /src/fs/bgl/nav/navbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/nav/navbase.cpp -------------------------------------------------------------------------------- /src/fs/bgl/nav/navbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/nav/navbase.h -------------------------------------------------------------------------------- /src/fs/bgl/nav/ndb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/nav/ndb.cpp -------------------------------------------------------------------------------- /src/fs/bgl/nav/ndb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/nav/ndb.h -------------------------------------------------------------------------------- /src/fs/bgl/nav/tacan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/nav/tacan.cpp -------------------------------------------------------------------------------- /src/fs/bgl/nav/tacan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/nav/tacan.h -------------------------------------------------------------------------------- /src/fs/bgl/nav/vor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/nav/vor.cpp -------------------------------------------------------------------------------- /src/fs/bgl/nav/vor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/nav/vor.h -------------------------------------------------------------------------------- /src/fs/bgl/nav/waypoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/nav/waypoint.cpp -------------------------------------------------------------------------------- /src/fs/bgl/nav/waypoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/nav/waypoint.h -------------------------------------------------------------------------------- /src/fs/bgl/nl/namelist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/nl/namelist.cpp -------------------------------------------------------------------------------- /src/fs/bgl/nl/namelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/nl/namelist.h -------------------------------------------------------------------------------- /src/fs/bgl/nl/namelistentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/nl/namelistentry.cpp -------------------------------------------------------------------------------- /src/fs/bgl/nl/namelistentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/nl/namelistentry.h -------------------------------------------------------------------------------- /src/fs/bgl/record.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/record.cpp -------------------------------------------------------------------------------- /src/fs/bgl/record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/record.h -------------------------------------------------------------------------------- /src/fs/bgl/recordtypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/recordtypes.cpp -------------------------------------------------------------------------------- /src/fs/bgl/recordtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/recordtypes.h -------------------------------------------------------------------------------- /src/fs/bgl/section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/section.cpp -------------------------------------------------------------------------------- /src/fs/bgl/section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/section.h -------------------------------------------------------------------------------- /src/fs/bgl/sectiontype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/sectiontype.cpp -------------------------------------------------------------------------------- /src/fs/bgl/sectiontype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/sectiontype.h -------------------------------------------------------------------------------- /src/fs/bgl/subsection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/subsection.cpp -------------------------------------------------------------------------------- /src/fs/bgl/subsection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/subsection.h -------------------------------------------------------------------------------- /src/fs/bgl/surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/surface.cpp -------------------------------------------------------------------------------- /src/fs/bgl/surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/surface.h -------------------------------------------------------------------------------- /src/fs/bgl/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/util.cpp -------------------------------------------------------------------------------- /src/fs/bgl/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/bgl/util.h -------------------------------------------------------------------------------- /src/fs/common/airportindex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/common/airportindex.cpp -------------------------------------------------------------------------------- /src/fs/common/airportindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/common/airportindex.h -------------------------------------------------------------------------------- /src/fs/common/binarygeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/common/binarygeometry.cpp -------------------------------------------------------------------------------- /src/fs/common/binarygeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/common/binarygeometry.h -------------------------------------------------------------------------------- /src/fs/common/binarymsageometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/common/binarymsageometry.cpp -------------------------------------------------------------------------------- /src/fs/common/binarymsageometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/common/binarymsageometry.h -------------------------------------------------------------------------------- /src/fs/common/globereader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/common/globereader.cpp -------------------------------------------------------------------------------- /src/fs/common/globereader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/common/globereader.h -------------------------------------------------------------------------------- /src/fs/common/magdecreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/common/magdecreader.cpp -------------------------------------------------------------------------------- /src/fs/common/magdecreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/common/magdecreader.h -------------------------------------------------------------------------------- /src/fs/common/metadatawriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/common/metadatawriter.cpp -------------------------------------------------------------------------------- /src/fs/common/metadatawriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/common/metadatawriter.h -------------------------------------------------------------------------------- /src/fs/common/morareader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/common/morareader.cpp -------------------------------------------------------------------------------- /src/fs/common/morareader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/common/morareader.h -------------------------------------------------------------------------------- /src/fs/common/procedurewriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/common/procedurewriter.cpp -------------------------------------------------------------------------------- /src/fs/common/procedurewriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/common/procedurewriter.h -------------------------------------------------------------------------------- /src/fs/common/xpgeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/common/xpgeometry.cpp -------------------------------------------------------------------------------- /src/fs/common/xpgeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/common/xpgeometry.h -------------------------------------------------------------------------------- /src/fs/db/airwayresolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/airwayresolver.cpp -------------------------------------------------------------------------------- /src/fs/db/airwayresolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/airwayresolver.h -------------------------------------------------------------------------------- /src/fs/db/ap/airportfilewriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/airportfilewriter.cpp -------------------------------------------------------------------------------- /src/fs/db/ap/airportfilewriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/airportfilewriter.h -------------------------------------------------------------------------------- /src/fs/db/ap/airportwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/airportwriter.cpp -------------------------------------------------------------------------------- /src/fs/db/ap/airportwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/airportwriter.h -------------------------------------------------------------------------------- /src/fs/db/ap/approachlegwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/approachlegwriter.cpp -------------------------------------------------------------------------------- /src/fs/db/ap/approachlegwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/approachlegwriter.h -------------------------------------------------------------------------------- /src/fs/db/ap/approachwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/approachwriter.cpp -------------------------------------------------------------------------------- /src/fs/db/ap/approachwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/approachwriter.h -------------------------------------------------------------------------------- /src/fs/db/ap/apronwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/apronwriter.cpp -------------------------------------------------------------------------------- /src/fs/db/ap/apronwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/apronwriter.h -------------------------------------------------------------------------------- /src/fs/db/ap/comwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/comwriter.cpp -------------------------------------------------------------------------------- /src/fs/db/ap/comwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/comwriter.h -------------------------------------------------------------------------------- /src/fs/db/ap/deleteprocessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/deleteprocessor.cpp -------------------------------------------------------------------------------- /src/fs/db/ap/deleteprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/deleteprocessor.h -------------------------------------------------------------------------------- /src/fs/db/ap/helipadwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/helipadwriter.cpp -------------------------------------------------------------------------------- /src/fs/db/ap/helipadwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/helipadwriter.h -------------------------------------------------------------------------------- /src/fs/db/ap/legbasewriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/legbasewriter.cpp -------------------------------------------------------------------------------- /src/fs/db/ap/legbasewriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/legbasewriter.h -------------------------------------------------------------------------------- /src/fs/db/ap/parkingwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/parkingwriter.cpp -------------------------------------------------------------------------------- /src/fs/db/ap/parkingwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/parkingwriter.h -------------------------------------------------------------------------------- /src/fs/db/ap/rw/runwayendwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/rw/runwayendwriter.cpp -------------------------------------------------------------------------------- /src/fs/db/ap/rw/runwayendwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/rw/runwayendwriter.h -------------------------------------------------------------------------------- /src/fs/db/ap/rw/runwaywriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/rw/runwaywriter.cpp -------------------------------------------------------------------------------- /src/fs/db/ap/rw/runwaywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/rw/runwaywriter.h -------------------------------------------------------------------------------- /src/fs/db/ap/sidstarapproachlegwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/sidstarapproachlegwriter.cpp -------------------------------------------------------------------------------- /src/fs/db/ap/sidstarapproachlegwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/sidstarapproachlegwriter.h -------------------------------------------------------------------------------- /src/fs/db/ap/sidstartransitionlegwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/sidstartransitionlegwriter.cpp -------------------------------------------------------------------------------- /src/fs/db/ap/sidstartransitionlegwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/sidstartransitionlegwriter.h -------------------------------------------------------------------------------- /src/fs/db/ap/sidstartransitionwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/sidstartransitionwriter.cpp -------------------------------------------------------------------------------- /src/fs/db/ap/sidstartransitionwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/sidstartransitionwriter.h -------------------------------------------------------------------------------- /src/fs/db/ap/sidstarwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/sidstarwriter.cpp -------------------------------------------------------------------------------- /src/fs/db/ap/sidstarwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/sidstarwriter.h -------------------------------------------------------------------------------- /src/fs/db/ap/startwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/startwriter.cpp -------------------------------------------------------------------------------- /src/fs/db/ap/startwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/startwriter.h -------------------------------------------------------------------------------- /src/fs/db/ap/taxipathwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/taxipathwriter.cpp -------------------------------------------------------------------------------- /src/fs/db/ap/taxipathwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/taxipathwriter.h -------------------------------------------------------------------------------- /src/fs/db/ap/transitionlegwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/transitionlegwriter.cpp -------------------------------------------------------------------------------- /src/fs/db/ap/transitionlegwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/transitionlegwriter.h -------------------------------------------------------------------------------- /src/fs/db/ap/transitionwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/transitionwriter.cpp -------------------------------------------------------------------------------- /src/fs/db/ap/transitionwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/ap/transitionwriter.h -------------------------------------------------------------------------------- /src/fs/db/databasemeta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/databasemeta.cpp -------------------------------------------------------------------------------- /src/fs/db/databasemeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/databasemeta.h -------------------------------------------------------------------------------- /src/fs/db/datawriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/datawriter.cpp -------------------------------------------------------------------------------- /src/fs/db/datawriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/datawriter.h -------------------------------------------------------------------------------- /src/fs/db/meta/bglfilewriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/meta/bglfilewriter.cpp -------------------------------------------------------------------------------- /src/fs/db/meta/bglfilewriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/meta/bglfilewriter.h -------------------------------------------------------------------------------- /src/fs/db/meta/sceneryareawriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/meta/sceneryareawriter.cpp -------------------------------------------------------------------------------- /src/fs/db/meta/sceneryareawriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/meta/sceneryareawriter.h -------------------------------------------------------------------------------- /src/fs/db/nav/airwaysegmentwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/nav/airwaysegmentwriter.cpp -------------------------------------------------------------------------------- /src/fs/db/nav/airwaysegmentwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/nav/airwaysegmentwriter.h -------------------------------------------------------------------------------- /src/fs/db/nav/boundarywriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/nav/boundarywriter.cpp -------------------------------------------------------------------------------- /src/fs/db/nav/boundarywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/nav/boundarywriter.h -------------------------------------------------------------------------------- /src/fs/db/nav/ilswriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/nav/ilswriter.cpp -------------------------------------------------------------------------------- /src/fs/db/nav/ilswriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/nav/ilswriter.h -------------------------------------------------------------------------------- /src/fs/db/nav/markerwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/nav/markerwriter.cpp -------------------------------------------------------------------------------- /src/fs/db/nav/markerwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/nav/markerwriter.h -------------------------------------------------------------------------------- /src/fs/db/nav/ndbwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/nav/ndbwriter.cpp -------------------------------------------------------------------------------- /src/fs/db/nav/ndbwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/nav/ndbwriter.h -------------------------------------------------------------------------------- /src/fs/db/nav/tacanwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/nav/tacanwriter.cpp -------------------------------------------------------------------------------- /src/fs/db/nav/tacanwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/nav/tacanwriter.h -------------------------------------------------------------------------------- /src/fs/db/nav/vorwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/nav/vorwriter.cpp -------------------------------------------------------------------------------- /src/fs/db/nav/vorwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/nav/vorwriter.h -------------------------------------------------------------------------------- /src/fs/db/nav/waypointwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/nav/waypointwriter.cpp -------------------------------------------------------------------------------- /src/fs/db/nav/waypointwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/nav/waypointwriter.h -------------------------------------------------------------------------------- /src/fs/db/runwayindex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/runwayindex.cpp -------------------------------------------------------------------------------- /src/fs/db/runwayindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/runwayindex.h -------------------------------------------------------------------------------- /src/fs/db/writerbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/writerbase.h -------------------------------------------------------------------------------- /src/fs/db/writerbasebasic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/writerbasebasic.cpp -------------------------------------------------------------------------------- /src/fs/db/writerbasebasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/db/writerbasebasic.h -------------------------------------------------------------------------------- /src/fs/dfd/dfdcompiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/dfd/dfdcompiler.cpp -------------------------------------------------------------------------------- /src/fs/dfd/dfdcompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/dfd/dfdcompiler.h -------------------------------------------------------------------------------- /src/fs/fspaths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/fspaths.cpp -------------------------------------------------------------------------------- /src/fs/fspaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/fspaths.h -------------------------------------------------------------------------------- /src/fs/gpx/gpxio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/gpx/gpxio.cpp -------------------------------------------------------------------------------- /src/fs/gpx/gpxio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/gpx/gpxio.h -------------------------------------------------------------------------------- /src/fs/gpx/gpxtypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/gpx/gpxtypes.cpp -------------------------------------------------------------------------------- /src/fs/gpx/gpxtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/gpx/gpxtypes.h -------------------------------------------------------------------------------- /src/fs/navdatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/navdatabase.cpp -------------------------------------------------------------------------------- /src/fs/navdatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/navdatabase.h -------------------------------------------------------------------------------- /src/fs/navdatabaseerrors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/navdatabaseerrors.cpp -------------------------------------------------------------------------------- /src/fs/navdatabaseerrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/navdatabaseerrors.h -------------------------------------------------------------------------------- /src/fs/navdatabaseflags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/navdatabaseflags.cpp -------------------------------------------------------------------------------- /src/fs/navdatabaseflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/navdatabaseflags.h -------------------------------------------------------------------------------- /src/fs/navdatabaseoptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/navdatabaseoptions.cpp -------------------------------------------------------------------------------- /src/fs/navdatabaseoptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/navdatabaseoptions.h -------------------------------------------------------------------------------- /src/fs/navdatabaseprogress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/navdatabaseprogress.cpp -------------------------------------------------------------------------------- /src/fs/navdatabaseprogress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/navdatabaseprogress.h -------------------------------------------------------------------------------- /src/fs/ns/navserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/ns/navserver.cpp -------------------------------------------------------------------------------- /src/fs/ns/navserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/ns/navserver.h -------------------------------------------------------------------------------- /src/fs/ns/navservercommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/ns/navservercommon.cpp -------------------------------------------------------------------------------- /src/fs/ns/navservercommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/ns/navservercommon.h -------------------------------------------------------------------------------- /src/fs/ns/navserverworker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/ns/navserverworker.cpp -------------------------------------------------------------------------------- /src/fs/ns/navserverworker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/ns/navserverworker.h -------------------------------------------------------------------------------- /src/fs/online/onlinedatamanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/online/onlinedatamanager.cpp -------------------------------------------------------------------------------- /src/fs/online/onlinedatamanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/online/onlinedatamanager.h -------------------------------------------------------------------------------- /src/fs/online/onlinetextparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/online/onlinetextparser.cpp -------------------------------------------------------------------------------- /src/fs/online/onlinetypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/online/onlinetypes.cpp -------------------------------------------------------------------------------- /src/fs/online/onlinetypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/online/onlinetypes.h -------------------------------------------------------------------------------- /src/fs/online/statustextparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/online/statustextparser.cpp -------------------------------------------------------------------------------- /src/fs/online/statustextparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/online/statustextparser.h -------------------------------------------------------------------------------- /src/fs/online/whazzuptextparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/online/whazzuptextparser.cpp -------------------------------------------------------------------------------- /src/fs/online/whazzuptextparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/online/whazzuptextparser.h -------------------------------------------------------------------------------- /src/fs/perf/aircraftperf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/perf/aircraftperf.cpp -------------------------------------------------------------------------------- /src/fs/perf/aircraftperf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/perf/aircraftperf.h -------------------------------------------------------------------------------- /src/fs/perf/aircraftperfconstants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/perf/aircraftperfconstants.cpp -------------------------------------------------------------------------------- /src/fs/perf/aircraftperfconstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/perf/aircraftperfconstants.h -------------------------------------------------------------------------------- /src/fs/perf/aircraftperfhandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/perf/aircraftperfhandler.cpp -------------------------------------------------------------------------------- /src/fs/perf/aircraftperfhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/perf/aircraftperfhandler.h -------------------------------------------------------------------------------- /src/fs/pln/flightplan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/pln/flightplan.cpp -------------------------------------------------------------------------------- /src/fs/pln/flightplan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/pln/flightplan.h -------------------------------------------------------------------------------- /src/fs/pln/flightplanconstants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/pln/flightplanconstants.cpp -------------------------------------------------------------------------------- /src/fs/pln/flightplanconstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/pln/flightplanconstants.h -------------------------------------------------------------------------------- /src/fs/pln/flightplanentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/pln/flightplanentry.cpp -------------------------------------------------------------------------------- /src/fs/pln/flightplanentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/pln/flightplanentry.h -------------------------------------------------------------------------------- /src/fs/pln/flightplanio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/pln/flightplanio.cpp -------------------------------------------------------------------------------- /src/fs/pln/flightplanio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/pln/flightplanio.h -------------------------------------------------------------------------------- /src/fs/progresshandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/progresshandler.cpp -------------------------------------------------------------------------------- /src/fs/progresshandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/progresshandler.h -------------------------------------------------------------------------------- /src/fs/sc/connecthandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/connecthandler.cpp -------------------------------------------------------------------------------- /src/fs/sc/connecthandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/connecthandler.h -------------------------------------------------------------------------------- /src/fs/sc/datareaderthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/datareaderthread.cpp -------------------------------------------------------------------------------- /src/fs/sc/datareaderthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/datareaderthread.h -------------------------------------------------------------------------------- /src/fs/sc/db/simconnectairport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/db/simconnectairport.cpp -------------------------------------------------------------------------------- /src/fs/sc/db/simconnectairport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/db/simconnectairport.h -------------------------------------------------------------------------------- /src/fs/sc/db/simconnectid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/db/simconnectid.cpp -------------------------------------------------------------------------------- /src/fs/sc/db/simconnectid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/db/simconnectid.h -------------------------------------------------------------------------------- /src/fs/sc/db/simconnectloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/db/simconnectloader.cpp -------------------------------------------------------------------------------- /src/fs/sc/db/simconnectloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/db/simconnectloader.h -------------------------------------------------------------------------------- /src/fs/sc/db/simconnectnav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/db/simconnectnav.cpp -------------------------------------------------------------------------------- /src/fs/sc/db/simconnectnav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/db/simconnectnav.h -------------------------------------------------------------------------------- /src/fs/sc/db/simconnectwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/db/simconnectwriter.cpp -------------------------------------------------------------------------------- /src/fs/sc/db/simconnectwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/db/simconnectwriter.h -------------------------------------------------------------------------------- /src/fs/sc/simconnectaircraft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/simconnectaircraft.cpp -------------------------------------------------------------------------------- /src/fs/sc/simconnectaircraft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/simconnectaircraft.h -------------------------------------------------------------------------------- /src/fs/sc/simconnectapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/simconnectapi.cpp -------------------------------------------------------------------------------- /src/fs/sc/simconnectapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/simconnectapi.h -------------------------------------------------------------------------------- /src/fs/sc/simconnectdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/simconnectdata.cpp -------------------------------------------------------------------------------- /src/fs/sc/simconnectdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/simconnectdata.h -------------------------------------------------------------------------------- /src/fs/sc/simconnectdatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/simconnectdatabase.cpp -------------------------------------------------------------------------------- /src/fs/sc/simconnectdatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/simconnectdatabase.h -------------------------------------------------------------------------------- /src/fs/sc/simconnectdummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/simconnectdummy.cpp -------------------------------------------------------------------------------- /src/fs/sc/simconnectdummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/simconnectdummy.h -------------------------------------------------------------------------------- /src/fs/sc/simconnecthandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/simconnecthandler.cpp -------------------------------------------------------------------------------- /src/fs/sc/simconnecthandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/simconnecthandler.h -------------------------------------------------------------------------------- /src/fs/sc/simconnectreply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/simconnectreply.cpp -------------------------------------------------------------------------------- /src/fs/sc/simconnectreply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/simconnectreply.h -------------------------------------------------------------------------------- /src/fs/sc/simconnecttypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/simconnecttypes.cpp -------------------------------------------------------------------------------- /src/fs/sc/simconnecttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/simconnecttypes.h -------------------------------------------------------------------------------- /src/fs/sc/simconnectuseraircraft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/simconnectuseraircraft.cpp -------------------------------------------------------------------------------- /src/fs/sc/simconnectuseraircraft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/simconnectuseraircraft.h -------------------------------------------------------------------------------- /src/fs/sc/weatherrequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/weatherrequest.cpp -------------------------------------------------------------------------------- /src/fs/sc/weatherrequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/weatherrequest.h -------------------------------------------------------------------------------- /src/fs/sc/xpconnecthandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/xpconnecthandler.cpp -------------------------------------------------------------------------------- /src/fs/sc/xpconnecthandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/sc/xpconnecthandler.h -------------------------------------------------------------------------------- /src/fs/scenery/addoncfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/scenery/addoncfg.cpp -------------------------------------------------------------------------------- /src/fs/scenery/addoncfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/scenery/addoncfg.h -------------------------------------------------------------------------------- /src/fs/scenery/addoncomponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/scenery/addoncomponent.cpp -------------------------------------------------------------------------------- /src/fs/scenery/addoncomponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/scenery/addoncomponent.h -------------------------------------------------------------------------------- /src/fs/scenery/addonpackage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/scenery/addonpackage.cpp -------------------------------------------------------------------------------- /src/fs/scenery/addonpackage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/scenery/addonpackage.h -------------------------------------------------------------------------------- /src/fs/scenery/aircraftindex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/scenery/aircraftindex.cpp -------------------------------------------------------------------------------- /src/fs/scenery/aircraftindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/scenery/aircraftindex.h -------------------------------------------------------------------------------- /src/fs/scenery/contentxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/scenery/contentxml.cpp -------------------------------------------------------------------------------- /src/fs/scenery/contentxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/scenery/contentxml.h -------------------------------------------------------------------------------- /src/fs/scenery/fileresolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/scenery/fileresolver.cpp -------------------------------------------------------------------------------- /src/fs/scenery/fileresolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/scenery/fileresolver.h -------------------------------------------------------------------------------- /src/fs/scenery/languagejson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/scenery/languagejson.cpp -------------------------------------------------------------------------------- /src/fs/scenery/languagejson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/scenery/languagejson.h -------------------------------------------------------------------------------- /src/fs/scenery/layoutjson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/scenery/layoutjson.cpp -------------------------------------------------------------------------------- /src/fs/scenery/layoutjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/scenery/layoutjson.h -------------------------------------------------------------------------------- /src/fs/scenery/manifestjson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/scenery/manifestjson.cpp -------------------------------------------------------------------------------- /src/fs/scenery/manifestjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/scenery/manifestjson.h -------------------------------------------------------------------------------- /src/fs/scenery/materiallib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/scenery/materiallib.cpp -------------------------------------------------------------------------------- /src/fs/scenery/materiallib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/scenery/materiallib.h -------------------------------------------------------------------------------- /src/fs/scenery/sceneryarea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/scenery/sceneryarea.cpp -------------------------------------------------------------------------------- /src/fs/scenery/sceneryarea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/scenery/sceneryarea.h -------------------------------------------------------------------------------- /src/fs/scenery/scenerycfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/scenery/scenerycfg.cpp -------------------------------------------------------------------------------- /src/fs/scenery/scenerycfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/scenery/scenerycfg.h -------------------------------------------------------------------------------- /src/fs/userdata/airspacereaderbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/userdata/airspacereaderbase.cpp -------------------------------------------------------------------------------- /src/fs/userdata/airspacereaderbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/userdata/airspacereaderbase.h -------------------------------------------------------------------------------- /src/fs/userdata/airspacereaderivao.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/userdata/airspacereaderivao.cpp -------------------------------------------------------------------------------- /src/fs/userdata/airspacereaderivao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/userdata/airspacereaderivao.h -------------------------------------------------------------------------------- /src/fs/userdata/airspacereaderopenair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/userdata/airspacereaderopenair.cpp -------------------------------------------------------------------------------- /src/fs/userdata/airspacereaderopenair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/userdata/airspacereaderopenair.h -------------------------------------------------------------------------------- /src/fs/userdata/airspacereadervatsim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/userdata/airspacereadervatsim.cpp -------------------------------------------------------------------------------- /src/fs/userdata/airspacereadervatsim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/userdata/airspacereadervatsim.h -------------------------------------------------------------------------------- /src/fs/userdata/logdatamanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/userdata/logdatamanager.cpp -------------------------------------------------------------------------------- /src/fs/userdata/logdatamanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/userdata/logdatamanager.h -------------------------------------------------------------------------------- /src/fs/userdata/userdatamanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/userdata/userdatamanager.cpp -------------------------------------------------------------------------------- /src/fs/userdata/userdatamanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/userdata/userdatamanager.h -------------------------------------------------------------------------------- /src/fs/util/coordinates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/util/coordinates.cpp -------------------------------------------------------------------------------- /src/fs/util/coordinates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/util/coordinates.h -------------------------------------------------------------------------------- /src/fs/util/fsutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/util/fsutil.cpp -------------------------------------------------------------------------------- /src/fs/util/fsutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/util/fsutil.h -------------------------------------------------------------------------------- /src/fs/util/morsecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/util/morsecode.cpp -------------------------------------------------------------------------------- /src/fs/util/morsecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/util/morsecode.h -------------------------------------------------------------------------------- /src/fs/util/tacanfrequencies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/util/tacanfrequencies.cpp -------------------------------------------------------------------------------- /src/fs/util/tacanfrequencies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/util/tacanfrequencies.h -------------------------------------------------------------------------------- /src/fs/weather/metar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/weather/metar.cpp -------------------------------------------------------------------------------- /src/fs/weather/metar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/weather/metar.h -------------------------------------------------------------------------------- /src/fs/weather/metarindex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/weather/metarindex.cpp -------------------------------------------------------------------------------- /src/fs/weather/metarindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/weather/metarindex.h -------------------------------------------------------------------------------- /src/fs/weather/metarparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/weather/metarparser.cpp -------------------------------------------------------------------------------- /src/fs/weather/metarparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/weather/metarparser.h -------------------------------------------------------------------------------- /src/fs/weather/noaaweatherdownloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/weather/noaaweatherdownloader.cpp -------------------------------------------------------------------------------- /src/fs/weather/noaaweatherdownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/weather/noaaweatherdownloader.h -------------------------------------------------------------------------------- /src/fs/weather/weatherdownloadbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/weather/weatherdownloadbase.cpp -------------------------------------------------------------------------------- /src/fs/weather/weatherdownloadbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/weather/weatherdownloadbase.h -------------------------------------------------------------------------------- /src/fs/weather/weathernetdownload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/weather/weathernetdownload.cpp -------------------------------------------------------------------------------- /src/fs/weather/weathernetdownload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/weather/weathernetdownload.h -------------------------------------------------------------------------------- /src/fs/weather/weathertypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/weather/weathertypes.cpp -------------------------------------------------------------------------------- /src/fs/weather/weathertypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/weather/weathertypes.h -------------------------------------------------------------------------------- /src/fs/weather/xpweatherreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/weather/xpweatherreader.cpp -------------------------------------------------------------------------------- /src/fs/weather/xpweatherreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/weather/xpweatherreader.h -------------------------------------------------------------------------------- /src/fs/xp/scenerypacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/xp/scenerypacks.cpp -------------------------------------------------------------------------------- /src/fs/xp/scenerypacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/xp/scenerypacks.h -------------------------------------------------------------------------------- /src/fs/xp/xpairportmsareader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/xp/xpairportmsareader.cpp -------------------------------------------------------------------------------- /src/fs/xp/xpairportmsareader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/xp/xpairportmsareader.h -------------------------------------------------------------------------------- /src/fs/xp/xpairportreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/xp/xpairportreader.cpp -------------------------------------------------------------------------------- /src/fs/xp/xpairportreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/xp/xpairportreader.h -------------------------------------------------------------------------------- /src/fs/xp/xpairspacereader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/xp/xpairspacereader.cpp -------------------------------------------------------------------------------- /src/fs/xp/xpairspacereader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/xp/xpairspacereader.h -------------------------------------------------------------------------------- /src/fs/xp/xpairwaypostprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/xp/xpairwaypostprocess.cpp -------------------------------------------------------------------------------- /src/fs/xp/xpairwaypostprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/xp/xpairwaypostprocess.h -------------------------------------------------------------------------------- /src/fs/xp/xpairwayreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/xp/xpairwayreader.cpp -------------------------------------------------------------------------------- /src/fs/xp/xpairwayreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/xp/xpairwayreader.h -------------------------------------------------------------------------------- /src/fs/xp/xpcifpreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/xp/xpcifpreader.cpp -------------------------------------------------------------------------------- /src/fs/xp/xpcifpreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/xp/xpcifpreader.h -------------------------------------------------------------------------------- /src/fs/xp/xpconstants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/xp/xpconstants.cpp -------------------------------------------------------------------------------- /src/fs/xp/xpconstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/xp/xpconstants.h -------------------------------------------------------------------------------- /src/fs/xp/xpdatacompiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/xp/xpdatacompiler.cpp -------------------------------------------------------------------------------- /src/fs/xp/xpdatacompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/xp/xpdatacompiler.h -------------------------------------------------------------------------------- /src/fs/xp/xpfixreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/xp/xpfixreader.cpp -------------------------------------------------------------------------------- /src/fs/xp/xpfixreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/xp/xpfixreader.h -------------------------------------------------------------------------------- /src/fs/xp/xpholdingreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/xp/xpholdingreader.cpp -------------------------------------------------------------------------------- /src/fs/xp/xpholdingreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/xp/xpholdingreader.h -------------------------------------------------------------------------------- /src/fs/xp/xpmorareader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/xp/xpmorareader.cpp -------------------------------------------------------------------------------- /src/fs/xp/xpmorareader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/xp/xpmorareader.h -------------------------------------------------------------------------------- /src/fs/xp/xpnavreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/xp/xpnavreader.cpp -------------------------------------------------------------------------------- /src/fs/xp/xpnavreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/xp/xpnavreader.h -------------------------------------------------------------------------------- /src/fs/xp/xpreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/xp/xpreader.cpp -------------------------------------------------------------------------------- /src/fs/xp/xpreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/fs/xp/xpreader.h -------------------------------------------------------------------------------- /src/g2clib/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/CHANGES -------------------------------------------------------------------------------- /src/g2clib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/README -------------------------------------------------------------------------------- /src/g2clib/cmplxpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/cmplxpack.c -------------------------------------------------------------------------------- /src/g2clib/compack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/compack.c -------------------------------------------------------------------------------- /src/g2clib/comunpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/comunpack.c -------------------------------------------------------------------------------- /src/g2clib/dec_jpeg2000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/dec_jpeg2000.c -------------------------------------------------------------------------------- /src/g2clib/dec_png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/dec_png.c -------------------------------------------------------------------------------- /src/g2clib/drstemplates.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/drstemplates.c -------------------------------------------------------------------------------- /src/g2clib/drstemplates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/drstemplates.h -------------------------------------------------------------------------------- /src/g2clib/enc_jpeg2000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/enc_jpeg2000.c -------------------------------------------------------------------------------- /src/g2clib/enc_png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/enc_png.c -------------------------------------------------------------------------------- /src/g2clib/g2_addfield.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/g2_addfield.c -------------------------------------------------------------------------------- /src/g2clib/g2_addgrid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/g2_addgrid.c -------------------------------------------------------------------------------- /src/g2clib/g2_addlocal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/g2_addlocal.c -------------------------------------------------------------------------------- /src/g2clib/g2_create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/g2_create.c -------------------------------------------------------------------------------- /src/g2clib/g2_free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/g2_free.c -------------------------------------------------------------------------------- /src/g2clib/g2_getfld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/g2_getfld.c -------------------------------------------------------------------------------- /src/g2clib/g2_gribend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/g2_gribend.c -------------------------------------------------------------------------------- /src/g2clib/g2_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/g2_info.c -------------------------------------------------------------------------------- /src/g2clib/g2_miss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/g2_miss.c -------------------------------------------------------------------------------- /src/g2clib/g2_unpack1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/g2_unpack1.c -------------------------------------------------------------------------------- /src/g2clib/g2_unpack2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/g2_unpack2.c -------------------------------------------------------------------------------- /src/g2clib/g2_unpack3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/g2_unpack3.c -------------------------------------------------------------------------------- /src/g2clib/g2_unpack4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/g2_unpack4.c -------------------------------------------------------------------------------- /src/g2clib/g2_unpack5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/g2_unpack5.c -------------------------------------------------------------------------------- /src/g2clib/g2_unpack6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/g2_unpack6.c -------------------------------------------------------------------------------- /src/g2clib/g2_unpack7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/g2_unpack7.c -------------------------------------------------------------------------------- /src/g2clib/gbits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/gbits.c -------------------------------------------------------------------------------- /src/g2clib/getdim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/getdim.c -------------------------------------------------------------------------------- /src/g2clib/getpoly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/getpoly.c -------------------------------------------------------------------------------- /src/g2clib/grib2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/grib2.h -------------------------------------------------------------------------------- /src/g2clib/grib2c.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/grib2c.doc -------------------------------------------------------------------------------- /src/g2clib/gridtemplates.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/gridtemplates.c -------------------------------------------------------------------------------- /src/g2clib/gridtemplates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/gridtemplates.h -------------------------------------------------------------------------------- /src/g2clib/int_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/int_power.c -------------------------------------------------------------------------------- /src/g2clib/jpcpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/jpcpack.c -------------------------------------------------------------------------------- /src/g2clib/jpcunpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/jpcunpack.c -------------------------------------------------------------------------------- /src/g2clib/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/makefile -------------------------------------------------------------------------------- /src/g2clib/misspack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/misspack.c -------------------------------------------------------------------------------- /src/g2clib/mkieee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/mkieee.c -------------------------------------------------------------------------------- /src/g2clib/pack_gp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/pack_gp.c -------------------------------------------------------------------------------- /src/g2clib/pdstemplates.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/pdstemplates.c -------------------------------------------------------------------------------- /src/g2clib/pdstemplates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/pdstemplates.h -------------------------------------------------------------------------------- /src/g2clib/pngpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/pngpack.c -------------------------------------------------------------------------------- /src/g2clib/pngunpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/pngunpack.c -------------------------------------------------------------------------------- /src/g2clib/rdieee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/rdieee.c -------------------------------------------------------------------------------- /src/g2clib/reduce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/reduce.c -------------------------------------------------------------------------------- /src/g2clib/seekgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/seekgb.c -------------------------------------------------------------------------------- /src/g2clib/simpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/simpack.c -------------------------------------------------------------------------------- /src/g2clib/simunpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/simunpack.c -------------------------------------------------------------------------------- /src/g2clib/specpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/specpack.c -------------------------------------------------------------------------------- /src/g2clib/specunpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/g2clib/specunpack.c -------------------------------------------------------------------------------- /src/geo/calculations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/geo/calculations.cpp -------------------------------------------------------------------------------- /src/geo/calculations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/geo/calculations.h -------------------------------------------------------------------------------- /src/geo/line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/geo/line.cpp -------------------------------------------------------------------------------- /src/geo/line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/geo/line.h -------------------------------------------------------------------------------- /src/geo/linestring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/geo/linestring.cpp -------------------------------------------------------------------------------- /src/geo/linestring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/geo/linestring.h -------------------------------------------------------------------------------- /src/geo/nanoflann.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/geo/nanoflann.h -------------------------------------------------------------------------------- /src/geo/point3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/geo/point3d.cpp -------------------------------------------------------------------------------- /src/geo/point3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/geo/point3d.h -------------------------------------------------------------------------------- /src/geo/pos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/geo/pos.cpp -------------------------------------------------------------------------------- /src/geo/pos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/geo/pos.h -------------------------------------------------------------------------------- /src/geo/rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/geo/rect.cpp -------------------------------------------------------------------------------- /src/geo/rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/geo/rect.h -------------------------------------------------------------------------------- /src/geo/spatialindex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/geo/spatialindex.cpp -------------------------------------------------------------------------------- /src/geo/spatialindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/geo/spatialindex.h -------------------------------------------------------------------------------- /src/grib/gribcommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/grib/gribcommon.cpp -------------------------------------------------------------------------------- /src/grib/gribcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/grib/gribcommon.h -------------------------------------------------------------------------------- /src/grib/gribdownloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/grib/gribdownloader.cpp -------------------------------------------------------------------------------- /src/grib/gribdownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/grib/gribdownloader.h -------------------------------------------------------------------------------- /src/grib/gribreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/grib/gribreader.cpp -------------------------------------------------------------------------------- /src/grib/gribreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/grib/gribreader.h -------------------------------------------------------------------------------- /src/grib/windquery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/grib/windquery.cpp -------------------------------------------------------------------------------- /src/grib/windquery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/grib/windquery.h -------------------------------------------------------------------------------- /src/grib/windtypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/grib/windtypes.cpp -------------------------------------------------------------------------------- /src/grib/windtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/grib/windtypes.h -------------------------------------------------------------------------------- /src/gui/actionbuttonhandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/actionbuttonhandler.cpp -------------------------------------------------------------------------------- /src/gui/actionbuttonhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/actionbuttonhandler.h -------------------------------------------------------------------------------- /src/gui/actionstatesaver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/actionstatesaver.cpp -------------------------------------------------------------------------------- /src/gui/actionstatesaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/actionstatesaver.h -------------------------------------------------------------------------------- /src/gui/actiontextsaver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/actiontextsaver.cpp -------------------------------------------------------------------------------- /src/gui/actiontextsaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/actiontextsaver.h -------------------------------------------------------------------------------- /src/gui/actiontool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/actiontool.cpp -------------------------------------------------------------------------------- /src/gui/actiontool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/actiontool.h -------------------------------------------------------------------------------- /src/gui/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/application.cpp -------------------------------------------------------------------------------- /src/gui/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/application.h -------------------------------------------------------------------------------- /src/gui/choicedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/choicedialog.cpp -------------------------------------------------------------------------------- /src/gui/choicedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/choicedialog.h -------------------------------------------------------------------------------- /src/gui/choicedialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/choicedialog.ui -------------------------------------------------------------------------------- /src/gui/clicktooltiphandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/clicktooltiphandler.cpp -------------------------------------------------------------------------------- /src/gui/clicktooltiphandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/clicktooltiphandler.h -------------------------------------------------------------------------------- /src/gui/consoleapplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/consoleapplication.cpp -------------------------------------------------------------------------------- /src/gui/consoleapplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/consoleapplication.h -------------------------------------------------------------------------------- /src/gui/dataexchange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/dataexchange.cpp -------------------------------------------------------------------------------- /src/gui/dataexchange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/dataexchange.h -------------------------------------------------------------------------------- /src/gui/desktopservices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/desktopservices.cpp -------------------------------------------------------------------------------- /src/gui/desktopservices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/desktopservices.h -------------------------------------------------------------------------------- /src/gui/dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/dialog.cpp -------------------------------------------------------------------------------- /src/gui/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/dialog.h -------------------------------------------------------------------------------- /src/gui/dockwidgethandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/dockwidgethandler.cpp -------------------------------------------------------------------------------- /src/gui/dockwidgethandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/dockwidgethandler.h -------------------------------------------------------------------------------- /src/gui/errorhandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/errorhandler.cpp -------------------------------------------------------------------------------- /src/gui/errorhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/errorhandler.h -------------------------------------------------------------------------------- /src/gui/filehistoryhandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/filehistoryhandler.cpp -------------------------------------------------------------------------------- /src/gui/filehistoryhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/filehistoryhandler.h -------------------------------------------------------------------------------- /src/gui/griddelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/griddelegate.cpp -------------------------------------------------------------------------------- /src/gui/griddelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/griddelegate.h -------------------------------------------------------------------------------- /src/gui/helphandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/helphandler.cpp -------------------------------------------------------------------------------- /src/gui/helphandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/helphandler.h -------------------------------------------------------------------------------- /src/gui/itemviewzoomhandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/itemviewzoomhandler.cpp -------------------------------------------------------------------------------- /src/gui/itemviewzoomhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/itemviewzoomhandler.h -------------------------------------------------------------------------------- /src/gui/listwidgetindex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/listwidgetindex.cpp -------------------------------------------------------------------------------- /src/gui/listwidgetindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/listwidgetindex.h -------------------------------------------------------------------------------- /src/gui/mapposhistory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/mapposhistory.cpp -------------------------------------------------------------------------------- /src/gui/mapposhistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/mapposhistory.h -------------------------------------------------------------------------------- /src/gui/messagebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/messagebox.cpp -------------------------------------------------------------------------------- /src/gui/messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/messagebox.h -------------------------------------------------------------------------------- /src/gui/messagebox.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/messagebox.ui -------------------------------------------------------------------------------- /src/gui/palettesettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/palettesettings.cpp -------------------------------------------------------------------------------- /src/gui/palettesettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/palettesettings.h -------------------------------------------------------------------------------- /src/gui/signalblocker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/signalblocker.cpp -------------------------------------------------------------------------------- /src/gui/signalblocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/signalblocker.h -------------------------------------------------------------------------------- /src/gui/sqlquerydialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/sqlquerydialog.cpp -------------------------------------------------------------------------------- /src/gui/sqlquerydialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/sqlquerydialog.h -------------------------------------------------------------------------------- /src/gui/sqlquerydialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/sqlquerydialog.ui -------------------------------------------------------------------------------- /src/gui/tabwidgethandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/tabwidgethandler.cpp -------------------------------------------------------------------------------- /src/gui/tabwidgethandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/tabwidgethandler.h -------------------------------------------------------------------------------- /src/gui/tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/tools.cpp -------------------------------------------------------------------------------- /src/gui/tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/tools.h -------------------------------------------------------------------------------- /src/gui/translator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/translator.cpp -------------------------------------------------------------------------------- /src/gui/translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/translator.h -------------------------------------------------------------------------------- /src/gui/treedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/treedialog.cpp -------------------------------------------------------------------------------- /src/gui/treedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/treedialog.h -------------------------------------------------------------------------------- /src/gui/treedialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/treedialog.ui -------------------------------------------------------------------------------- /src/gui/widgetstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/widgetstate.cpp -------------------------------------------------------------------------------- /src/gui/widgetstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/widgetstate.h -------------------------------------------------------------------------------- /src/gui/widgetutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/widgetutil.cpp -------------------------------------------------------------------------------- /src/gui/widgetutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/gui/widgetutil.h -------------------------------------------------------------------------------- /src/httpserver/httpconnectionhandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/httpserver/httpconnectionhandler.cpp -------------------------------------------------------------------------------- /src/httpserver/httpconnectionhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/httpserver/httpconnectionhandler.h -------------------------------------------------------------------------------- /src/httpserver/httpconnectionhandlerpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/httpserver/httpconnectionhandlerpool.cpp -------------------------------------------------------------------------------- /src/httpserver/httpconnectionhandlerpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/httpserver/httpconnectionhandlerpool.h -------------------------------------------------------------------------------- /src/httpserver/httpcookie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/httpserver/httpcookie.cpp -------------------------------------------------------------------------------- /src/httpserver/httpcookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/httpserver/httpcookie.h -------------------------------------------------------------------------------- /src/httpserver/httpglobal.cpp: -------------------------------------------------------------------------------- 1 | #include "httpglobal.h" 2 | 3 | const char *getQtWebAppLibVersion() 4 | { 5 | return "1.9.0"; 6 | } 7 | -------------------------------------------------------------------------------- /src/httpserver/httpglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/httpserver/httpglobal.h -------------------------------------------------------------------------------- /src/httpserver/httplistener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/httpserver/httplistener.cpp -------------------------------------------------------------------------------- /src/httpserver/httplistener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/httpserver/httplistener.h -------------------------------------------------------------------------------- /src/httpserver/httprequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/httpserver/httprequest.cpp -------------------------------------------------------------------------------- /src/httpserver/httprequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/httpserver/httprequest.h -------------------------------------------------------------------------------- /src/httpserver/httprequesthandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/httpserver/httprequesthandler.cpp -------------------------------------------------------------------------------- /src/httpserver/httprequesthandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/httpserver/httprequesthandler.h -------------------------------------------------------------------------------- /src/httpserver/httpresponse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/httpserver/httpresponse.cpp -------------------------------------------------------------------------------- /src/httpserver/httpresponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/httpserver/httpresponse.h -------------------------------------------------------------------------------- /src/httpserver/httpsession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/httpserver/httpsession.cpp -------------------------------------------------------------------------------- /src/httpserver/httpsession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/httpserver/httpsession.h -------------------------------------------------------------------------------- /src/httpserver/httpsessionstore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/httpserver/httpsessionstore.cpp -------------------------------------------------------------------------------- /src/httpserver/httpsessionstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/httpserver/httpsessionstore.h -------------------------------------------------------------------------------- /src/httpserver/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/httpserver/readme.txt -------------------------------------------------------------------------------- /src/httpserver/staticfilecontroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/httpserver/staticfilecontroller.cpp -------------------------------------------------------------------------------- /src/httpserver/staticfilecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/httpserver/staticfilecontroller.h -------------------------------------------------------------------------------- /src/io/abstractinireader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/io/abstractinireader.cpp -------------------------------------------------------------------------------- /src/io/abstractinireader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/io/abstractinireader.h -------------------------------------------------------------------------------- /src/io/binarystream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/io/binarystream.cpp -------------------------------------------------------------------------------- /src/io/binarystream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/io/binarystream.h -------------------------------------------------------------------------------- /src/io/binaryutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/io/binaryutil.cpp -------------------------------------------------------------------------------- /src/io/binaryutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/io/binaryutil.h -------------------------------------------------------------------------------- /src/io/fileroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/io/fileroller.cpp -------------------------------------------------------------------------------- /src/io/fileroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/io/fileroller.h -------------------------------------------------------------------------------- /src/io/inireader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/io/inireader.cpp -------------------------------------------------------------------------------- /src/io/inireader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/io/inireader.h -------------------------------------------------------------------------------- /src/io/tempfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/io/tempfile.cpp -------------------------------------------------------------------------------- /src/io/tempfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/io/tempfile.h -------------------------------------------------------------------------------- /src/json/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/json/nlohmann/json.hpp -------------------------------------------------------------------------------- /src/logging/loggingconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/logging/loggingconfig.cpp -------------------------------------------------------------------------------- /src/logging/loggingconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/logging/loggingconfig.h -------------------------------------------------------------------------------- /src/logging/loggingguiabort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/logging/loggingguiabort.cpp -------------------------------------------------------------------------------- /src/logging/loggingguiabort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/logging/loggingguiabort.h -------------------------------------------------------------------------------- /src/logging/logginghandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/logging/logginghandler.cpp -------------------------------------------------------------------------------- /src/logging/logginghandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/logging/logginghandler.h -------------------------------------------------------------------------------- /src/logging/loggingtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/logging/loggingtypes.h -------------------------------------------------------------------------------- /src/logging/loggingutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/logging/loggingutil.cpp -------------------------------------------------------------------------------- /src/logging/loggingutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/logging/loggingutil.h -------------------------------------------------------------------------------- /src/routing/routefinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/routing/routefinder.cpp -------------------------------------------------------------------------------- /src/routing/routefinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/routing/routefinder.h -------------------------------------------------------------------------------- /src/routing/routenetwork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/routing/routenetwork.cpp -------------------------------------------------------------------------------- /src/routing/routenetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/routing/routenetwork.h -------------------------------------------------------------------------------- /src/routing/routenetworkloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/routing/routenetworkloader.cpp -------------------------------------------------------------------------------- /src/routing/routenetworkloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/routing/routenetworkloader.h -------------------------------------------------------------------------------- /src/routing/routenetworktypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/routing/routenetworktypes.cpp -------------------------------------------------------------------------------- /src/routing/routenetworktypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/routing/routenetworktypes.h -------------------------------------------------------------------------------- /src/settings/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/settings/settings.cpp -------------------------------------------------------------------------------- /src/settings/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/settings/settings.h -------------------------------------------------------------------------------- /src/sql/datamanagerbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/sql/datamanagerbase.cpp -------------------------------------------------------------------------------- /src/sql/datamanagerbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/sql/datamanagerbase.h -------------------------------------------------------------------------------- /src/sql/sqlcolumn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/sql/sqlcolumn.cpp -------------------------------------------------------------------------------- /src/sql/sqlcolumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/sql/sqlcolumn.h -------------------------------------------------------------------------------- /src/sql/sqldatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/sql/sqldatabase.cpp -------------------------------------------------------------------------------- /src/sql/sqldatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/sql/sqldatabase.h -------------------------------------------------------------------------------- /src/sql/sqlexception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/sql/sqlexception.cpp -------------------------------------------------------------------------------- /src/sql/sqlexception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/sql/sqlexception.h -------------------------------------------------------------------------------- /src/sql/sqlexport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/sql/sqlexport.cpp -------------------------------------------------------------------------------- /src/sql/sqlexport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/sql/sqlexport.h -------------------------------------------------------------------------------- /src/sql/sqlquery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/sql/sqlquery.cpp -------------------------------------------------------------------------------- /src/sql/sqlquery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/sql/sqlquery.h -------------------------------------------------------------------------------- /src/sql/sqlrecord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/sql/sqlrecord.cpp -------------------------------------------------------------------------------- /src/sql/sqlrecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/sql/sqlrecord.h -------------------------------------------------------------------------------- /src/sql/sqlscript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/sql/sqlscript.cpp -------------------------------------------------------------------------------- /src/sql/sqlscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/sql/sqlscript.h -------------------------------------------------------------------------------- /src/sql/sqltransaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/sql/sqltransaction.cpp -------------------------------------------------------------------------------- /src/sql/sqltransaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/sql/sqltransaction.h -------------------------------------------------------------------------------- /src/sql/sqltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/sql/sqltypes.h -------------------------------------------------------------------------------- /src/sql/sqlutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/sql/sqlutil.cpp -------------------------------------------------------------------------------- /src/sql/sqlutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/sql/sqlutil.h -------------------------------------------------------------------------------- /src/templateengine/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/templateengine/readme.txt -------------------------------------------------------------------------------- /src/templateengine/template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/templateengine/template.cpp -------------------------------------------------------------------------------- /src/templateengine/template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/templateengine/template.h -------------------------------------------------------------------------------- /src/templateengine/templatecache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/templateengine/templatecache.cpp -------------------------------------------------------------------------------- /src/templateengine/templatecache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/templateengine/templatecache.h -------------------------------------------------------------------------------- /src/templateengine/templateglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/templateengine/templateglobal.h -------------------------------------------------------------------------------- /src/templateengine/templateloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/templateengine/templateloader.cpp -------------------------------------------------------------------------------- /src/templateengine/templateloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/templateengine/templateloader.h -------------------------------------------------------------------------------- /src/track/trackdownloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/track/trackdownloader.cpp -------------------------------------------------------------------------------- /src/track/trackdownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/track/trackdownloader.h -------------------------------------------------------------------------------- /src/track/trackreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/track/trackreader.cpp -------------------------------------------------------------------------------- /src/track/trackreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/track/trackreader.h -------------------------------------------------------------------------------- /src/track/tracktypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/track/tracktypes.cpp -------------------------------------------------------------------------------- /src/track/tracktypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/track/tracktypes.h -------------------------------------------------------------------------------- /src/util/average.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/average.cpp -------------------------------------------------------------------------------- /src/util/average.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/average.h -------------------------------------------------------------------------------- /src/util/contextsaver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/contextsaver.cpp -------------------------------------------------------------------------------- /src/util/contextsaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/contextsaver.h -------------------------------------------------------------------------------- /src/util/crashhandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/crashhandler.cpp -------------------------------------------------------------------------------- /src/util/crashhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/crashhandler.h -------------------------------------------------------------------------------- /src/util/csvfilereader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/csvfilereader.cpp -------------------------------------------------------------------------------- /src/util/csvfilereader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/csvfilereader.h -------------------------------------------------------------------------------- /src/util/csvreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/csvreader.cpp -------------------------------------------------------------------------------- /src/util/csvreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/csvreader.h -------------------------------------------------------------------------------- /src/util/filechecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/filechecker.cpp -------------------------------------------------------------------------------- /src/util/filechecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/filechecker.h -------------------------------------------------------------------------------- /src/util/fileoperations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/fileoperations.cpp -------------------------------------------------------------------------------- /src/util/fileoperations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/fileoperations.h -------------------------------------------------------------------------------- /src/util/filesystemwatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/filesystemwatcher.cpp -------------------------------------------------------------------------------- /src/util/filesystemwatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/filesystemwatcher.h -------------------------------------------------------------------------------- /src/util/flags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/flags.cpp -------------------------------------------------------------------------------- /src/util/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/flags.h -------------------------------------------------------------------------------- /src/util/heap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/heap.cpp -------------------------------------------------------------------------------- /src/util/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/heap.h -------------------------------------------------------------------------------- /src/util/htmlbuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/htmlbuilder.cpp -------------------------------------------------------------------------------- /src/util/htmlbuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/htmlbuilder.h -------------------------------------------------------------------------------- /src/util/htmlbuilderflags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/htmlbuilderflags.cpp -------------------------------------------------------------------------------- /src/util/htmlbuilderflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/htmlbuilderflags.h -------------------------------------------------------------------------------- /src/util/httpdownloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/httpdownloader.cpp -------------------------------------------------------------------------------- /src/util/httpdownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/httpdownloader.h -------------------------------------------------------------------------------- /src/util/locker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/locker.cpp -------------------------------------------------------------------------------- /src/util/locker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/locker.h -------------------------------------------------------------------------------- /src/util/paintercontextsaver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/paintercontextsaver.cpp -------------------------------------------------------------------------------- /src/util/paintercontextsaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/paintercontextsaver.h -------------------------------------------------------------------------------- /src/util/polygontools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/polygontools.cpp -------------------------------------------------------------------------------- /src/util/polygontools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/polygontools.h -------------------------------------------------------------------------------- /src/util/properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/properties.cpp -------------------------------------------------------------------------------- /src/util/properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/properties.h -------------------------------------------------------------------------------- /src/util/props.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/props.cpp -------------------------------------------------------------------------------- /src/util/props.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/props.h -------------------------------------------------------------------------------- /src/util/roundedpolygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/roundedpolygon.cpp -------------------------------------------------------------------------------- /src/util/roundedpolygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/roundedpolygon.h -------------------------------------------------------------------------------- /src/util/signalhandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/signalhandler.cpp -------------------------------------------------------------------------------- /src/util/signalhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/signalhandler.h -------------------------------------------------------------------------------- /src/util/simplecrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/simplecrypt.cpp -------------------------------------------------------------------------------- /src/util/simplecrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/simplecrypt.h -------------------------------------------------------------------------------- /src/util/str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/str.cpp -------------------------------------------------------------------------------- /src/util/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/str.h -------------------------------------------------------------------------------- /src/util/timedcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/timedcache.cpp -------------------------------------------------------------------------------- /src/util/timedcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/timedcache.h -------------------------------------------------------------------------------- /src/util/updatecheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/updatecheck.cpp -------------------------------------------------------------------------------- /src/util/updatecheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/updatecheck.h -------------------------------------------------------------------------------- /src/util/updatechecktypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/updatechecktypes.cpp -------------------------------------------------------------------------------- /src/util/updatechecktypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/updatechecktypes.h -------------------------------------------------------------------------------- /src/util/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/version.cpp -------------------------------------------------------------------------------- /src/util/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/version.h -------------------------------------------------------------------------------- /src/util/xmlstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/xmlstream.cpp -------------------------------------------------------------------------------- /src/util/xmlstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/util/xmlstream.h -------------------------------------------------------------------------------- /src/win/activationcontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/win/activationcontext.cpp -------------------------------------------------------------------------------- /src/win/activationcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/win/activationcontext.h -------------------------------------------------------------------------------- /src/wmm/GeomagnetismHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/wmm/GeomagnetismHeader.h -------------------------------------------------------------------------------- /src/wmm/GeomagnetismLibrary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/wmm/GeomagnetismLibrary.c -------------------------------------------------------------------------------- /src/wmm/WMM_README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/wmm/WMM_README.txt -------------------------------------------------------------------------------- /src/wmm/magdectool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/wmm/magdectool.cpp -------------------------------------------------------------------------------- /src/wmm/magdectool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/wmm/magdectool.h -------------------------------------------------------------------------------- /src/zip/gzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zip/gzip.cpp -------------------------------------------------------------------------------- /src/zip/gzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zip/gzip.h -------------------------------------------------------------------------------- /src/zip/zip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zip/zip.cpp -------------------------------------------------------------------------------- /src/zip/zipreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zip/zipreader.h -------------------------------------------------------------------------------- /src/zip/zipwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zip/zipwriter.h -------------------------------------------------------------------------------- /src/zlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/CMakeLists.txt -------------------------------------------------------------------------------- /src/zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/ChangeLog -------------------------------------------------------------------------------- /src/zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/FAQ -------------------------------------------------------------------------------- /src/zlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/INDEX -------------------------------------------------------------------------------- /src/zlib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/LICENSE -------------------------------------------------------------------------------- /src/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/Makefile -------------------------------------------------------------------------------- /src/zlib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/Makefile.in -------------------------------------------------------------------------------- /src/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/README -------------------------------------------------------------------------------- /src/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/adler32.c -------------------------------------------------------------------------------- /src/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/compress.c -------------------------------------------------------------------------------- /src/zlib/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/configure -------------------------------------------------------------------------------- /src/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/crc32.c -------------------------------------------------------------------------------- /src/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/crc32.h -------------------------------------------------------------------------------- /src/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/deflate.c -------------------------------------------------------------------------------- /src/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/deflate.h -------------------------------------------------------------------------------- /src/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/gzclose.c -------------------------------------------------------------------------------- /src/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/gzguts.h -------------------------------------------------------------------------------- /src/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/gzlib.c -------------------------------------------------------------------------------- /src/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/gzread.c -------------------------------------------------------------------------------- /src/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/gzwrite.c -------------------------------------------------------------------------------- /src/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/infback.c -------------------------------------------------------------------------------- /src/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/inffast.c -------------------------------------------------------------------------------- /src/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/inffast.h -------------------------------------------------------------------------------- /src/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/inffixed.h -------------------------------------------------------------------------------- /src/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/inflate.c -------------------------------------------------------------------------------- /src/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/inflate.h -------------------------------------------------------------------------------- /src/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/inftrees.c -------------------------------------------------------------------------------- /src/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/inftrees.h -------------------------------------------------------------------------------- /src/zlib/make_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/make_vms.com -------------------------------------------------------------------------------- /src/zlib/treebuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/treebuild.xml -------------------------------------------------------------------------------- /src/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/trees.c -------------------------------------------------------------------------------- /src/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/trees.h -------------------------------------------------------------------------------- /src/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/uncompr.c -------------------------------------------------------------------------------- /src/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/zconf.h -------------------------------------------------------------------------------- /src/zlib/zconf.h.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/zconf.h.cmakein -------------------------------------------------------------------------------- /src/zlib/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/zconf.h.in -------------------------------------------------------------------------------- /src/zlib/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/zlib.3 -------------------------------------------------------------------------------- /src/zlib/zlib.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/zlib.3.pdf -------------------------------------------------------------------------------- /src/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/zlib.h -------------------------------------------------------------------------------- /src/zlib/zlib.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/zlib.map -------------------------------------------------------------------------------- /src/zlib/zlib.pc.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/zlib.pc.cmakein -------------------------------------------------------------------------------- /src/zlib/zlib.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/zlib.pc.in -------------------------------------------------------------------------------- /src/zlib/zlib2ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/zlib2ansi -------------------------------------------------------------------------------- /src/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/zutil.c -------------------------------------------------------------------------------- /src/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/src/zlib/zutil.h -------------------------------------------------------------------------------- /uncrustify.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albar965/atools/HEAD/uncrustify.cfg --------------------------------------------------------------------------------