diff options
author | Tom Rondeau | 2010-10-19 16:33:40 -0400 |
---|---|---|
committer | Tom Rondeau | 2010-10-19 16:33:40 -0400 |
commit | 2c544567f5f9322b51b26a32bdb6280ee12f16de (patch) | |
tree | c0f4b0b3646f1795764771ff61fe553d6e66ff92 /gnuradio-core/src/lib/swig/gnuradio.i | |
parent | 068aa7f5b2591f7cc06e4495c89600101bd19b6b (diff) | |
download | gnuradio-2c544567f5f9322b51b26a32bdb6280ee12f16de.tar.gz gnuradio-2c544567f5f9322b51b26a32bdb6280ee12f16de.tar.bz2 gnuradio-2c544567f5f9322b51b26a32bdb6280ee12f16de.zip |
Adding vectors to gr_block_detail that keep track of the number of samples read and written from each block's input. Accessor functions allow query of values through gr_block.
Had to add gr_uint64 typedef to SWIG for it to understand how to handle the type.
Diffstat (limited to 'gnuradio-core/src/lib/swig/gnuradio.i')
-rw-r--r-- | gnuradio-core/src/lib/swig/gnuradio.i | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnuradio-core/src/lib/swig/gnuradio.i b/gnuradio-core/src/lib/swig/gnuradio.i index 7d0241f1c..60cbf0d58 100644 --- a/gnuradio-core/src/lib/swig/gnuradio.i +++ b/gnuradio-core/src/lib/swig/gnuradio.i @@ -46,6 +46,7 @@ typedef std::complex<float> gr_complex; typedef std::complex<double> gr_complexd; +typedef unsigned long long gr_uint64; // instantiate the required template specializations |