From 991baf9b518655985889140db1dc56a4e1f667a0 Mon Sep 17 00:00:00 2001 From: "C. J. Howard" Date: Tue, 5 Jan 2021 22:20:53 +0800 Subject: [PATCH] Add UI namespace --- src/ui/ui.hpp | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/ui/ui.hpp diff --git a/src/ui/ui.hpp b/src/ui/ui.hpp new file mode 100644 index 0000000..ec68619 --- /dev/null +++ b/src/ui/ui.hpp @@ -0,0 +1,26 @@ +/* + * Copyright (C) 2021 Christopher J. Howard + * + * This file is part of Antkeeper source code. + * + * Antkeeper source code 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. + * + * Antkeeper source code 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 Antkeeper source code. If not, see . + */ + +#ifndef ANTKEEPER_UI_HPP +#define ANTKEEPER_UI_HPP + +/// UI elements +namespace ui {} + +#endif // ANTKEEPER_UI_HPP