#pragma once #include "export.hpp" #include #include #include OTR_GUI_EXPORT int otr_main(int argc, char** argv, std::function()> const& make_main_window); template auto run_application(int argc, char** argv, F&& fun) { return otr_main(argc, argv, fun); }