summaryrefslogtreecommitdiffstats
path: root/src/testshlibrary.d
diff options
context:
space:
mode:
Diffstat (limited to 'src/testshlibrary.d')
-rw-r--r--src/testshlibrary.d9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/testshlibrary.d b/src/testshlibrary.d
new file mode 100644
index 0000000..13cbea9
--- /dev/null
+++ b/src/testshlibrary.d
@@ -0,0 +1,9 @@
+module testshlibrary;
+
+public static class HelloWorldSharedObjectFactory
+{
+ public static char[] getVersion()
+ {
+ return "Version:";
+ }
+}