summaryrefslogtreecommitdiffstats
path: root/Help.cpp
diff options
context:
space:
mode:
authorMalfurious <m@lfurio.us>2020-07-13 02:17:54 -0400
committerMalfurious <m@lfurio.us>2020-07-13 02:17:54 -0400
commitacaac10219a213590694152f201e57e902f28d7d (patch)
tree6014c87d9fbd76754eb8a313ba556e6c67f620f8 /Help.cpp
parent74ebac726bb5adb6eb82844d3d88ed7d46962fc8 (diff)
downloadcompass-acaac10219a213590694152f201e57e902f28d7d.tar.gz
compass-acaac10219a213590694152f201e57e902f28d7d.zip
Add version number to help output
Diffstat (limited to 'Help.cpp')
-rw-r--r--Help.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/Help.cpp b/Help.cpp
index e774638..a8739be 100644
--- a/Help.cpp
+++ b/Help.cpp
@@ -1,4 +1,5 @@
#include "Help.h"
+#include "Compass.h"
Help::Help() {
std::cout << " ______ ____ ___ __________" << std::endl;
@@ -8,6 +9,9 @@ Help::Help() {
std::cout << "\\____/\\____/_/ /_/ /_/_/ /_/ |_/____/____/ " << std::endl;
std::cout << std::endl;
+ std::cout << " " << COMPASS_VERSION << std::endl;
+ std::cout << std::endl;
+
std::cout << " Minimal::Documentation" << std::endl;
std::cout << std::endl;
}