aboutsummaryrefslogtreecommitdiffstats
path: root/wrappers/swig/botan.swg
diff options
context:
space:
mode:
Diffstat (limited to 'wrappers/swig/botan.swg')
-rw-r--r--wrappers/swig/botan.swg26
1 files changed, 0 insertions, 26 deletions
diff --git a/wrappers/swig/botan.swg b/wrappers/swig/botan.swg
deleted file mode 100644
index 9088f4272..000000000
--- a/wrappers/swig/botan.swg
+++ /dev/null
@@ -1,26 +0,0 @@
-/*************************************************
-* SWIG Interface for Botan *
-*************************************************/
-%module botan
-
-%include "typemaps.i"
-%include "std_string.i"
-%include "exception.i"
-%include "constraints.i"
-%include "carrays.i"
-
-%{
-#include "base.h"
-%}
-
-%exception {
- try {
- $action
- }
- catch(std::exception& e)
- {
- SWIG_exception(SWIG_RuntimeError, e.what());
- }
-}
-
-%include "base.h"