aboutsummaryrefslogtreecommitdiff
path: root/src/Startup.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/Startup.cc')
-rw-r--r--src/Startup.cc16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/Startup.cc b/src/Startup.cc
new file mode 100644
index 0000000..d8e3d33
--- /dev/null
+++ b/src/Startup.cc
@@ -0,0 +1,16 @@
+ /*@@
+ @file Startup.c
+ @date
+ @author Gabrielle Allen
+ @desc
+ Register banner
+ @enddesc
+ @@*/
+
+extern "C" void CCTK_RegisterBanner(const char *string);
+
+extern "C" int WaveToyCXX_Startup(void)
+{
+ CCTK_RegisterBanner("WaveToyC++: Evolutions of a Scalar Field");
+}
+