summaryrefslogtreecommitdiff
path: root/examples/Export/dll.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/Export/dll.cpp')
-rw-r--r--examples/Export/dll.cpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/examples/Export/dll.cpp b/examples/Export/dll.cpp
deleted file mode 100644
index bef2877c058..00000000000
--- a/examples/Export/dll.cpp
+++ /dev/null
@@ -1,21 +0,0 @@
-// $Id$
-#include "dll.h"
-
-int
-test_function ()
-{
- test_variable = RETVAL;
- return RETVAL;
-}
-
-int
-test_class::method ()
-{
- return RETVAL;
-}
-
-test_class *
-get_dll_singleton ()
-{
- return TEST_SINGLETON::instance ();
-}