diff options
Diffstat (limited to 'include/ingen/shared/URIs.hpp')
-rw-r--r-- | include/ingen/shared/URIs.hpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/ingen/shared/URIs.hpp b/include/ingen/shared/URIs.hpp index 405f1276..01464589 100644 --- a/include/ingen/shared/URIs.hpp +++ b/include/ingen/shared/URIs.hpp @@ -22,12 +22,16 @@ #include "raul/URI.hpp" +namespace Raul { + class Forge; +} + namespace Ingen { namespace Shared { class URIs : public boost::noncopyable { public: - URIs(); + URIs(Raul::Forge& forge); uint32_t map_uri(const char* uri); const char* unmap_uri(uint32_t urid); @@ -38,6 +42,8 @@ public: uint32_t id; }; + Raul::Forge& forge; + const Quark atom_Bool; const Quark atom_Float; const Quark atom_Int32; |