Initial commit - gsm-receiver with removed quick hacks
diff --git a/swig/gsm_swig.i b/swig/gsm_swig.i
new file mode 100644
index 0000000..e1c3613
--- /dev/null
+++ b/swig/gsm_swig.i
@@ -0,0 +1,16 @@
+/* -*- c++ -*- */
+
+#define GSM_API
+
+%include "gnuradio.i"			// the common stuff
+
+//load generated python docstrings
+%include "gsm_swig_doc.i"
+
+%{
+#include "gsm/receiver.h"
+%}
+
+
+%include "gsm/receiver.h"
+GR_SWIG_BLOCK_MAGIC2(gsm, receiver);