From d5f1abb9c84ef7b8d479e2b453947373b24a7306 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Mon, 7 Aug 2023 13:40:50 -0400 Subject: Initial commit --- src/erable-application.h | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/erable-application.h (limited to 'src/erable-application.h') diff --git a/src/erable-application.h b/src/erable-application.h new file mode 100644 index 0000000..8be0fa7 --- /dev/null +++ b/src/erable-application.h @@ -0,0 +1,34 @@ +/* erable-application.h + * + * Copyright 2023 Andrew Lee + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +#pragma once + +#include + +G_BEGIN_DECLS + +#define ERABLE_TYPE_APPLICATION (erable_application_get_type()) + +G_DECLARE_FINAL_TYPE (ErableApplication, erable_application, ERABLE, APPLICATION, AdwApplication) + +ErableApplication *erable_application_new (const char *application_id, + GApplicationFlags flags); + +G_END_DECLS -- cgit v1.2.3