summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/Port.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/engine/Port.h')
-rw-r--r--src/libs/engine/Port.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libs/engine/Port.h b/src/libs/engine/Port.h
index 7ec7ec20..d742f5a9 100644
--- a/src/libs/engine/Port.h
+++ b/src/libs/engine/Port.h
@@ -43,14 +43,14 @@ class Port : public GraphObject
public:
virtual ~Port() {}
- void add_to_store();
- void remove_from_store();
+ void add_to_store() { assert(false); }
+ void remove_from_store() { assert(false); }
/** A port's parent is always a node, so static cast should be safe */
Node* parent_node() const { return (Node*)_parent; }
/** Called once per process cycle */
- virtual void process(samplecount nframes) = 0;
+ virtual void process(SampleCount nframes) = 0;
/** Empty buffer contents completely (ie silence) */
virtual void clear_buffers() = 0;