diff options
author | David Robillard <d@drobilla.net> | 2007-01-22 05:00:29 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-01-22 05:00:29 +0000 |
commit | ea3586e44a1621f97298e667a79f4c4f75f902ba (patch) | |
tree | 690673160bab500b197b0be8551daf55e927104b /src/libs/engine/events/SetMetadataEvent.h | |
parent | 6fc1fa0d3bec4b82cb3af4c4e887241087899e7e (diff) | |
download | ingen-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/events/SetMetadataEvent.h')
-rw-r--r-- | src/libs/engine/events/SetMetadataEvent.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/engine/events/SetMetadataEvent.h b/src/libs/engine/events/SetMetadataEvent.h index a795a115..adf73878 100644 --- a/src/libs/engine/events/SetMetadataEvent.h +++ b/src/libs/engine/events/SetMetadataEvent.h @@ -35,7 +35,7 @@ class GraphObject; class SetMetadataEvent : public QueuedEvent { public: - SetMetadataEvent(Engine& engine, SharedPtr<Responder> responder, SampleCount timestamp, const string& path, const string& key, const Atom& value); + SetMetadataEvent(Engine& engine, SharedPtr<Responder> responder, SampleCount timestamp, const string& path, const string& key, const Raul::Atom& value); void pre_process(); void execute(SampleCount nframes, FrameTime start, FrameTime end); @@ -44,7 +44,7 @@ public: private: string m_path; string m_key; - Atom m_value; + Raul::Atom m_value; GraphObject* m_object; }; |