File indexing completed on 2025-01-26 04:02:01
0001 /* 0002 * SPDX-FileCopyrightText: 2019-2023 Mattia Basaglia <dev@dragon.best> 0003 * 0004 * SPDX-License-Identifier: GPL-3.0-or-later 0005 */ 0006 0007 #pragma once 0008 0009 #include <QApplication> 0010 0011 #include "app/cli.hpp" 0012 #include "glaxnimate_app.hpp" 0013 0014 namespace glaxnimate::gui { 0015 0016 0017 app::cli::ParsedArguments parse_cli(const QStringList& args); 0018 void cli_main(gui::GlaxnimateApp& app, app::cli::ParsedArguments& args); 0019 0020 0021 } // namespace glaxnimate::gui