summaryrefslogtreecommitdiffstats
path: root/src/server/GraphImpl.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-09-23 19:06:25 +0200
committerDavid Robillard <d@drobilla.net>2018-09-23 19:06:25 +0200
commit04b4d70f38402b1e4e4751157f42eb558bd60f9c (patch)
tree7046ce56d1fb498f5e8720c5fb59ae9895fecb39 /src/server/GraphImpl.hpp
parent394b01da8e26dbe1b6a0520944d954ca0b16b1b5 (diff)
downloadingen-04b4d70f38402b1e4e4751157f42eb558bd60f9c.tar.gz
ingen-04b4d70f38402b1e4e4751157f42eb558bd60f9c.tar.bz2
ingen-04b4d70f38402b1e4e4751157f42eb558bd60f9c.zip
Use override specifiers
Diffstat (limited to 'src/server/GraphImpl.hpp')
-rw-r--r--src/server/GraphImpl.hpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/server/GraphImpl.hpp b/src/server/GraphImpl.hpp
index d0dd8b7d..384566bf 100644
--- a/src/server/GraphImpl.hpp
+++ b/src/server/GraphImpl.hpp
@@ -59,23 +59,23 @@ public:
virtual ~GraphImpl();
- virtual GraphType graph_type() const { return GraphType::GRAPH; }
+ GraphType graph_type() const override { return GraphType::GRAPH; }
BlockImpl* duplicate(Engine& engine,
const Raul::Symbol& symbol,
- GraphImpl* parent);
+ GraphImpl* parent) override;
- void activate(BufferFactory& bufs);
- void deactivate();
+ void activate(BufferFactory& bufs) override;
+ void deactivate() override;
- void pre_process(RunContext& context);
- void process(RunContext& context);
- void run(RunContext& context);
+ void pre_process(RunContext& context) override;
+ void process(RunContext& context) override;
+ void run(RunContext& context) override;
void set_buffer_size(RunContext& context,
BufferFactory& bufs,
LV2_URID type,
- uint32_t size);
+ uint32_t size) override;
/** Prepare for a new (internal) polyphony value.
*