summaryrefslogtreecommitdiff
path: root/src/help.hh
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-07-03 19:44:59 -0700
committerFuwn <[email protected]>2022-07-03 19:44:59 -0700
commit9ab0f74aa643dc5d27508e9b2043f0c476f8f928 (patch)
tree28865c9003efc06615258a965b1d766386fb8805 /src/help.hh
parentfix(cli): initialise padding (diff)
downloadcait-9ab0f74aa643dc5d27508e9b2043f0c476f8f928.tar.xz
cait-9ab0f74aa643dc5d27508e9b2043f0c476f8f928.zip
chore(ninja): rename src_dir
Diffstat (limited to 'src/help.hh')
-rw-r--r--src/help.hh44
1 files changed, 0 insertions, 44 deletions
diff --git a/src/help.hh b/src/help.hh
deleted file mode 100644
index 88517da..0000000
--- a/src/help.hh
+++ /dev/null
@@ -1,44 +0,0 @@
-// This file is part of Cait <https://github.com/Fuwn/cait>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
-//
-// 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, version 3.
-//
-// 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 <http://www.gnu.org/licenses/>.
-//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
-// SPDX-License-Identifier: GPL-3.0-only
-
-#ifndef HELP_HH
-#define HELP_HH
-
-#include <sstream>
-
-#define CAIT_TO_STRING(x) #x
-#define CAIT_STR(x) CAIT_TO_STRING(x)
-
-namespace cait {
-
-namespace version {
-
-constexpr unsigned int major = 0;
-constexpr unsigned int minor = 1;
-constexpr unsigned int patch = 0;
-constexpr auto whole() -> std::string {
- return CAIT_STR(major) "." CAIT_STR(minor) "." CAIT_STR(patch);
-}
-
-} // namespace version
-
-auto help_message() -> std::string;
-
-} // namespace cait
-
-#endif // HELP_HH