summaryrefslogtreecommitdiffstats
path: root/ingen/shared/AtomReader.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-05-10 04:02:24 +0000
committerDavid Robillard <d@drobilla.net>2012-05-10 04:02:24 +0000
commit8ec295a0f2a40086ed83e8d2ad8ad38c8125bcb4 (patch)
treeaf044468e3f20bea5c18d02ba35cd3a69cdc4808 /ingen/shared/AtomReader.hpp
parentda468f24388d7f0f574c6e4dd4022e05d47a9db2 (diff)
downloadingen-8ec295a0f2a40086ed83e8d2ad8ad38c8125bcb4.tar.gz
ingen-8ec295a0f2a40086ed83e8d2ad8ad38c8125bcb4.tar.bz2
ingen-8ec295a0f2a40086ed83e8d2ad8ad38c8125bcb4.zip
LV2URIMap => URIMap.
Trim unnecessary includes. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4337 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'ingen/shared/AtomReader.hpp')
-rw-r--r--ingen/shared/AtomReader.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ingen/shared/AtomReader.hpp b/ingen/shared/AtomReader.hpp
index ef80a4b1..30c4a8b0 100644
--- a/ingen/shared/AtomReader.hpp
+++ b/ingen/shared/AtomReader.hpp
@@ -19,7 +19,6 @@
#include "ingen/Interface.hpp"
#include "ingen/shared/AtomSink.hpp"
-#include "ingen/shared/LV2URIMap.hpp"
#include "ingen/shared/URIs.hpp"
#include "serd/serd.h"
@@ -30,12 +29,13 @@ class Forge;
namespace Shared {
class AtomSink;
+class URIMap;
/** An AtomSink that calls methods on an Interface. */
class AtomReader : public AtomSink
{
public:
- AtomReader(LV2URIMap& map, URIs& uris, Forge& forge, Interface& iface);
+ AtomReader(URIMap& map, URIs& uris, Forge& forge, Interface& iface);
~AtomReader() {}
void write(const LV2_Atom* msg);
@@ -46,7 +46,7 @@ private:
void get_props(const LV2_Atom_Object* obj,
Ingen::Resource::Properties& props);
- LV2URIMap& _map;
+ URIMap& _map;
URIs& _uris;
Forge& _forge;
Interface& _iface;