summaryrefslogtreecommitdiff
path: root/gnuradio-runtime/include/gnuradio/top_block.h
diff options
context:
space:
mode:
Diffstat (limited to 'gnuradio-runtime/include/gnuradio/top_block.h')
-rw-r--r--gnuradio-runtime/include/gnuradio/top_block.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gnuradio-runtime/include/gnuradio/top_block.h b/gnuradio-runtime/include/gnuradio/top_block.h
index 12051e6f04..199021c982 100644
--- a/gnuradio-runtime/include/gnuradio/top_block.h
+++ b/gnuradio-runtime/include/gnuradio/top_block.h
@@ -38,7 +38,7 @@ protected:
top_block(const std::string& name, bool catch_exceptions = true);
public:
- ~top_block();
+ ~top_block() override;
/*!
* \brief The simple interface to running a flowgraph.
@@ -92,7 +92,7 @@ public:
* thread (E.g., block::work method) or deadlock will occur
* when reconfiguration happens.
*/
- virtual void lock();
+ void lock() override;
/*!
* Unlock a flowgraph in preparation for reconfiguration. When an
@@ -103,7 +103,7 @@ public:
* (E.g., block::work method) or deadlock will occur when
* reconfiguration happens.
*/
- virtual void unlock();
+ void unlock() override;
/*!
* Returns a string that lists the edge connections in the
@@ -130,7 +130,7 @@ public:
top_block_sptr to_top_block(); // Needed for Python type coercion
- void setup_rpc();
+ void setup_rpc() override;
};
inline top_block_sptr cast_to_top_block_sptr(basic_block_sptr block)