summaryrefslogtreecommitdiffstats
path: root/Tests/Tutorial/MultiPackage/MathFunctions/MathFunctions.h
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Tutorial/MultiPackage/MathFunctions/MathFunctions.h')
-rw-r--r--Tests/Tutorial/MultiPackage/MathFunctions/MathFunctions.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/Tests/Tutorial/MultiPackage/MathFunctions/MathFunctions.h b/Tests/Tutorial/MultiPackage/MathFunctions/MathFunctions.h
deleted file mode 100644
index 3fb547b..0000000
--- a/Tests/Tutorial/MultiPackage/MathFunctions/MathFunctions.h
+++ /dev/null
@@ -1,14 +0,0 @@
-
-#if defined(_WIN32)
-# if defined(EXPORTING_MYMATH)
-# define DECLSPEC __declspec(dllexport)
-# else
-# define DECLSPEC __declspec(dllimport)
-# endif
-#else // non windows
-# define DECLSPEC
-#endif
-
-namespace mathfunctions {
-double DECLSPEC sqrt(double x);
-}