#pragma once #include "db/iers/iers_handler.h" #include "db/kepler/kepler_handler.h" #include "dll_export.h" #include #include #include "db/db_handler.h" namespace satdump { SATDUMP_DLL extern std::string user_path; SATDUMP_DLL extern std::string tle_file_override; SATDUMP_DLL extern bool tle_do_update_on_init; void initSatDump(bool is_gui = false); void exitSatDump(); SATDUMP_DLL extern std::shared_ptr db; SATDUMP_DLL extern std::shared_ptr db_keplers; SATDUMP_DLL extern std::shared_ptr db_iers; } // namespace satdump