From b906945fc8cc0a5f21d86aba9ea82da153528a74 Mon Sep 17 00:00:00 2001 From: oupson Date: Mon, 27 Feb 2023 09:38:06 +0100 Subject: [PATCH] Add Config service --- src/services/Config.vala | 32 ++++++++++++++++++++++++++++++++ src/services/meson.build | 1 + 2 files changed, 33 insertions(+) create mode 100644 src/services/Config.vala diff --git a/src/services/Config.vala b/src/services/Config.vala new file mode 100644 index 0000000..06b363b --- /dev/null +++ b/src/services/Config.vala @@ -0,0 +1,32 @@ +/* Config.vala + * + * Copyright 2023 oupson + * + * 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 + */ + +namespace Footerm.Services { + public class Config { + private static Config instance = null; + + public static Config get_instance() { + if (Config.instance == null) { + Config.instance = new Config(); + } + return Config.instance; + } + } +} diff --git a/src/services/meson.build b/src/services/meson.build index 9c7d496..5daf3f6 100644 --- a/src/services/meson.build +++ b/src/services/meson.build @@ -1,2 +1,3 @@ footerm_sources += files( + 'Config.vala' ) \ No newline at end of file