From f3e2e07201c50033bf6c9d0c6a6f068557b4f17f Mon Sep 17 00:00:00 2001
From: Tom Rondeau <trondeau@vt.edu>
Date: Wed, 17 Apr 2013 13:43:52 -0400
Subject: runtime: converting runtime core to gr namespace, gnuradio include
 dir.

---
 gnuradio-runtime/include/gr_py_feval.h | 51 ----------------------------------
 1 file changed, 51 deletions(-)
 delete mode 100644 gnuradio-runtime/include/gr_py_feval.h

(limited to 'gnuradio-runtime/include/gr_py_feval.h')

diff --git a/gnuradio-runtime/include/gr_py_feval.h b/gnuradio-runtime/include/gr_py_feval.h
deleted file mode 100644
index f2f6c801a8..0000000000
--- a/gnuradio-runtime/include/gr_py_feval.h
+++ /dev/null
@@ -1,51 +0,0 @@
-#include <pmt/pmt.h>
-
-class gr_py_feval_dd : public gr_feval_dd
-{
- public:
-  double calleval(double x)
-  {
-    ensure_py_gil_state _lock;
-    return eval(x);
-  }
-};
-
-class gr_py_feval_cc : public gr_feval_cc
-{
- public:
-  gr_complex calleval(gr_complex x)
-  {
-    ensure_py_gil_state _lock;
-    return eval(x);
-  }
-};
-
-class gr_py_feval_ll : public gr_feval_ll
-{
- public:
-  long calleval(long x)
-  {
-    ensure_py_gil_state _lock;
-    return eval(x);
-  }
-};
-
-class gr_py_feval : public gr_feval
-{
- public:
-  void calleval()
-  {
-    ensure_py_gil_state _lock;
-    eval();
-  }
-};
-
-class gr_py_feval_p : public gr_feval_p
-{
- public:
-  void calleval(pmt::pmt_t x)
-  {
-    ensure_py_gil_state _lock;
-    eval(x);
-  }
-};
-- 
cgit v1.2.3