diff options
author | Tim O'Shea <tim.oshea753@gmail.com> | 2012-11-28 15:15:58 -0800 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2012-11-29 15:42:57 -0800 |
commit | 92cfb0240005675f4e7a55a81552f4c7a5128cd8 (patch) | |
tree | 024a40e11a27a41eaa908b2eefb4a218795bff18 /gruel/src/swig/pmt_swig.i | |
parent | 0fbd1699158f01937f61c245398ccdaebe3d978b (diff) |
core: adding msg_connect, updating msg interface, adding symbolic block names
Diffstat (limited to 'gruel/src/swig/pmt_swig.i')
-rw-r--r-- | gruel/src/swig/pmt_swig.i | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gruel/src/swig/pmt_swig.i b/gruel/src/swig/pmt_swig.i index 45cfceadcb..d46143424b 100644 --- a/gruel/src/swig/pmt_swig.i +++ b/gruel/src/swig/pmt_swig.i @@ -696,6 +696,10 @@ pmt_t pmt_list6(const pmt_t& x1, const pmt_t& x2, const pmt_t& x3, const pmt_t& */ pmt_t pmt_list_add(pmt_t list, const pmt_t& item); +/*! + * \brief Return \p list with \p item removed + */ +pmt_t pmt_list_rm(pmt_t list, const pmt_t& item); /* * ------------------------------------------------------------------------ |