summaryrefslogtreecommitdiffstats
path: root/src/server/PostProcessor.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/PostProcessor.hpp')
-rw-r--r--src/server/PostProcessor.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/server/PostProcessor.hpp b/src/server/PostProcessor.hpp
index 9b2ca037..9fde0e43 100644
--- a/src/server/PostProcessor.hpp
+++ b/src/server/PostProcessor.hpp
@@ -26,7 +26,7 @@
namespace Ingen {
namespace Server {
-class QueuedEvent;
+class Event;
class Engine;
/** Processor for Events after leaving the audio thread.
@@ -49,7 +49,7 @@ public:
/** Push a list of events on to the process queue.
realtime-safe, not thread-safe.
*/
- void append(QueuedEvent* first, QueuedEvent* last);
+ void append(Event* first, Event* last);
/** Post-process and delete all pending events */
void process();
@@ -58,10 +58,10 @@ public:
void set_end_time(FrameTime time) { _max_time = time; }
private:
- Engine& _engine;
- Raul::AtomicPtr<QueuedEvent> _head;
- Raul::AtomicPtr<QueuedEvent> _tail;
- Raul::AtomicInt _max_time;
+ Engine& _engine;
+ Raul::AtomicPtr<Event> _head;
+ Raul::AtomicPtr<Event> _tail;
+ Raul::AtomicInt _max_time;
};
} // namespace Server