diff options
author | Josh Blum | 2013-03-21 20:45:59 -0700 |
---|---|---|
committer | Josh Blum | 2013-03-21 20:45:59 -0700 |
commit | 3472beec949cf8761713278034f3df997595c5a6 (patch) | |
tree | 9abe10d302a90f6b40b289739b12c516ca915a19 | |
parent | 8c3b96b2b7c9bfda6b19fd96a4305ded8d52a164 (diff) | |
download | sandhi-3472beec949cf8761713278034f3df997595c5a6.tar.gz sandhi-3472beec949cf8761713278034f3df997595c5a6.tar.bz2 sandhi-3472beec949cf8761713278034f3df997595c5a6.zip |
gras: removed deprecated lock/unlock calls
m--------- | gnuradio | 0 | ||||
-rw-r--r-- | include/gras/hier_block.hpp | 18 |
2 files changed, 4 insertions, 14 deletions
diff --git a/gnuradio b/gnuradio -Subproject f93eb4d02bc0babae13ea0e677e4e36b58050cc +Subproject 78ccc760124713a56c9c85729ac40844a97f055 diff --git a/include/gras/hier_block.hpp b/include/gras/hier_block.hpp index 0e10855..398024e 100644 --- a/include/gras/hier_block.hpp +++ b/include/gras/hier_block.hpp @@ -14,6 +14,10 @@ struct GRAS_API HierBlock : Element HierBlock(const std::string &name); + /******************************************************************* + * connection flow interface + ******************************************************************/ + void connect(const Element &elem); void disconnect(const Element &elem); @@ -40,20 +44,6 @@ struct GRAS_API HierBlock : Element */ virtual void commit(void); - /*! - * The lock() call is deprecated. - * Topology can be changed duing design execution. - * The underlying implementation is literally a NOP. - */ - inline void lock(void){} - - /*! - * The unlock() call is deprecated. - * Topology can be changed duing design execution. - * The underlying implementation is this->commit(). - */ - inline void unlock(void){this->commit();} - }; } //namespace gras |