diff options
author | Josh Blum | 2012-09-29 10:30:52 -0700 |
---|---|---|
committer | Josh Blum | 2012-09-29 10:30:52 -0700 |
commit | f3194e33de2a6496ce9ea838681e62b64fa689f4 (patch) | |
tree | 37b80081a4978826b6bf56603ed0bd35520e4af4 /include | |
parent | 17e39ddbb0940d9d5e687713531e9a18d18e29f1 (diff) | |
download | sandhi-f3194e33de2a6496ce9ea838681e62b64fa689f4.tar.gz sandhi-f3194e33de2a6496ce9ea838681e62b64fa689f4.tar.bz2 sandhi-f3194e33de2a6496ce9ea838681e62b64fa689f4.zip |
ported block task and tag handlers to apology
Diffstat (limited to 'include')
-rw-r--r-- | include/gnuradio/element.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/gnuradio/element.hpp b/include/gnuradio/element.hpp index 510a383..6c2790d 100644 --- a/include/gnuradio/element.hpp +++ b/include/gnuradio/element.hpp @@ -56,6 +56,9 @@ struct GRAS_API Element : boost::shared_ptr<ElementImpl>, boost::enable_shared_f //! Get the name of this element std::string name(void) const; + //! get a canonical name for this element + std::string to_string(void) const; + void set_output_signature(const gnuradio::IOSignature &sig); void set_input_signature(const gnuradio::IOSignature &sig); |