summaryrefslogtreecommitdiff
path: root/gr-radio-astronomy/src/lib/ra.i
diff options
context:
space:
mode:
authorjcorgan2006-08-03 04:51:51 +0000
committerjcorgan2006-08-03 04:51:51 +0000
commit5d69a524f81f234b3fbc41d49ba18d6f6886baba (patch)
treeb71312bf7f1e8d10fef0f3ac6f28784065e73e72 /gr-radio-astronomy/src/lib/ra.i
downloadgnuradio-5d69a524f81f234b3fbc41d49ba18d6f6886baba.tar.gz
gnuradio-5d69a524f81f234b3fbc41d49ba18d6f6886baba.tar.bz2
gnuradio-5d69a524f81f234b3fbc41d49ba18d6f6886baba.zip
Houston, we have a trunk.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@3122 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'gr-radio-astronomy/src/lib/ra.i')
-rw-r--r--gr-radio-astronomy/src/lib/ra.i45
1 files changed, 45 insertions, 0 deletions
diff --git a/gr-radio-astronomy/src/lib/ra.i b/gr-radio-astronomy/src/lib/ra.i
new file mode 100644
index 000000000..15cfbfb34
--- /dev/null
+++ b/gr-radio-astronomy/src/lib/ra.i
@@ -0,0 +1,45 @@
+/* -*- c++ -*- */
+
+%feature("autodoc", "1"); // generate python docstrings
+
+%include "exception.i"
+%import "gnuradio.i" // the common stuff
+
+%{
+#include "gnuradio_swig_bug_workaround.h" // mandatory bug fix
+#include <stdexcept>
+%}
+
+// We'll need something like this if we add C++ blocks...
+// See the gr-howto-write-a-block tarball for examples
+
+// ----------------------------------------------------------------
+
+/*
+ * First arg is the package prefix.
+ * Second arg is the name of the class minus the prefix.
+ *
+ * This does some behind-the-scenes magic so we can
+ * access ra_square_ff from python as ra.square_ff
+ */
+// GR_SWIG_BLOCK_MAGIC(ra,square_ff);
+
+// ra_square_ff_sptr ra_make_square_ff ();
+//
+// class ra_square_ff : public gr_block
+// {
+// private:
+// ra_square_ff ();
+// };
+//
+// // ----------------------------------------------------------------
+//
+// GR_SWIG_BLOCK_MAGIC(ra,square2_ff);
+//
+// ra_square2_ff_sptr ra_make_square2_ff ();
+//
+// class ra_square2_ff : public gr_sync_block
+// {
+// private:
+// ra_square2_ff ();
+// };