summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/PostProcessor.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-01-22 05:00:29 +0000
committerDavid Robillard <d@drobilla.net>2007-01-22 05:00:29 +0000
commitea3586e44a1621f97298e667a79f4c4f75f902ba (patch)
tree690673160bab500b197b0be8551daf55e927104b /src/libs/engine/PostProcessor.h
parent6fc1fa0d3bec4b82cb3af4c4e887241087899e7e (diff)
downloadingen-ea3586e44a1621f97298e667a79f4c4f75f902ba.tar.gz
ingen-ea3586e44a1621f97298e667a79f4c4f75f902ba.tar.bz2
ingen-ea3586e44a1621f97298e667a79f4c4f75f902ba.zip
Created Raul namespace.
git-svn-id: http://svn.drobilla.net/lad/ingen@265 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/PostProcessor.h')
-rw-r--r--src/libs/engine/PostProcessor.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libs/engine/PostProcessor.h b/src/libs/engine/PostProcessor.h
index 48d0792d..9cd4d29d 100644
--- a/src/libs/engine/PostProcessor.h
+++ b/src/libs/engine/PostProcessor.h
@@ -37,7 +37,7 @@ class Event;
*
* \ingroup engine
*/
-class PostProcessor : public Slave
+class PostProcessor : public Raul::Slave
{
public:
PostProcessor(Maid& maid, size_t queue_size);
@@ -46,9 +46,9 @@ public:
inline void push(Event* const ev) { _events.push(ev); }
private:
- Maid& _maid;
- SRSWQueue<Event*> _events;
- virtual void _whipped();
+ Maid& _maid;
+ Raul::SRSWQueue<Event*> _events;
+ virtual void _whipped();
};