summaryrefslogtreecommitdiffstats
path: root/src/server/internals/BlockDelay.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/internals/BlockDelay.hpp')
-rw-r--r--src/server/internals/BlockDelay.hpp20
1 files changed, 14 insertions, 6 deletions
diff --git a/src/server/internals/BlockDelay.hpp b/src/server/internals/BlockDelay.hpp
index 0e8fadce..a9667fa0 100644
--- a/src/server/internals/BlockDelay.hpp
+++ b/src/server/internals/BlockDelay.hpp
@@ -21,13 +21,21 @@
#include "InternalBlock.hpp"
#include "types.hpp"
+namespace raul {
+class Symbol;
+} // namespace raul
+
namespace ingen {
+
+class URIs;
+
namespace server {
+class BufferFactory;
+class GraphImpl;
class InputPort;
-class OutputPort;
class InternalPlugin;
-class BufferFactory;
+class OutputPort;
namespace internals {
@@ -36,16 +44,16 @@ class BlockDelayNode : public InternalBlock
public:
BlockDelayNode(InternalPlugin* plugin,
BufferFactory& bufs,
- const Raul::Symbol& symbol,
+ const raul::Symbol& symbol,
bool polyphonic,
GraphImpl* parent,
SampleRate srate);
- ~BlockDelayNode();
+ ~BlockDelayNode() override;
void activate(BufferFactory& bufs) override;
- void run(RunContext& context) override;
+ void run(RunContext& ctx) override;
static InternalPlugin* internal_plugin(URIs& uris);
@@ -55,8 +63,8 @@ private:
BufferRef _buffer;
};
+} // namespace internals
} // namespace server
} // namespace ingen
-} // namespace internals
#endif // INGEN_INTERNALS_BLOCKDELAY_HPP