summaryrefslogtreecommitdiffstats
path: root/ingen/shared/URIMap.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'ingen/shared/URIMap.hpp')
-rw-r--r--ingen/shared/URIMap.hpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/ingen/shared/URIMap.hpp b/ingen/shared/URIMap.hpp
index 1e8fb452..952d67ce 100644
--- a/ingen/shared/URIMap.hpp
+++ b/ingen/shared/URIMap.hpp
@@ -20,17 +20,18 @@
#include <map>
#include <utility>
-#include <boost/utility.hpp>
-
#include "ingen/shared/LV2Features.hpp"
#include "lv2/lv2plug.in/ns/ext/urid/urid.h"
#include "raul/URI.hpp"
+#include "raul/Noncopyable.hpp"
namespace Ingen {
namespace Shared {
-/** URI to Integer Map */
-class URIMap : public boost::noncopyable {
+/** URI to integer map and implementation of LV2 URID extension.
+ * @ingroup IngenShared
+ */
+class URIMap : public Raul::Noncopyable {
public:
URIMap(LV2_URID_Map* map, LV2_URID_Unmap* unmap);
virtual ~URIMap() {}