aboutsummaryrefslogtreecommitdiff
path: root/Source/Utils/Logo/GetLogo.cpp
diff options
context:
space:
mode:
authorGravatar Luca Fedeli <luca.fedeli@cea.fr> 2022-09-19 18:36:11 +0200
committerGravatar GitHub <noreply@github.com> 2022-09-19 09:36:11 -0700
commit6e75516aba4b58179b551467663f3d9e3d3dc05f (patch)
tree774683bc7c1687fcbce5ebe4c266835c98e24842 /Source/Utils/Logo/GetLogo.cpp
parent276e5743b29eb0194cd3cfb48a6e7a09d520dfaf (diff)
downloadWarpX-6e75516aba4b58179b551467663f3d9e3d3dc05f.tar.gz
WarpX-6e75516aba4b58179b551467663f3d9e3d3dc05f.tar.zst
WarpX-6e75516aba4b58179b551467663f3d9e3d3dc05f.zip
Display an ASCII art logo on standard output (#3382)
* display WarpX ascii art * fix bug * function is now noexcept * fix bug * fixed bug
Diffstat (limited to 'Source/Utils/Logo/GetLogo.cpp')
-rw-r--r--Source/Utils/Logo/GetLogo.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/Source/Utils/Logo/GetLogo.cpp b/Source/Utils/Logo/GetLogo.cpp
new file mode 100644
index 000000000..c515ceac1
--- /dev/null
+++ b/Source/Utils/Logo/GetLogo.cpp
@@ -0,0 +1,15 @@
+#include "GetLogo.H"
+
+std::string utils::logo::get_logo () noexcept
+{
+ return
+R"(
+ __ __ __ __
+ \ \ / /_ _ _ __ _ __\ \/ /
+ \ \ /\ / / _` | '__| '_ \\ /
+ \ V V / (_| | | | |_) / \
+ \_/\_/ \__,_|_| | .__/_/\_\
+ |_|
+
+)";
+}