oupis-application.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. /* oupis-application.h
  2. *
  3. * Copyright 2026 Thomas Arnoux
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  17. *
  18. * SPDX-License-Identifier: GPL-3.0-or-later
  19. */
  20. #pragma once
  21. #include <adwaita.h>
  22. G_BEGIN_DECLS
  23. #define OUPIS_TYPE_APPLICATION (oupis_application_get_type())
  24. G_DECLARE_FINAL_TYPE (OupisApplication, oupis_application, OUPIS, APPLICATION, AdwApplication)
  25. OupisApplication *oupis_application_new (const char *application_id,
  26. GApplicationFlags flags);
  27. G_END_DECLS