summaryrefslogtreecommitdiffstats
path: root/raul/URI.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-03-19 23:34:37 +0000
committerDavid Robillard <d@drobilla.net>2012-03-19 23:34:37 +0000
commit8350acca946fc925d359f2d7c8f342cef8f5b71b (patch)
tree539ca5696e7d8ef510228cb5099b90bb99b450d3 /raul/URI.hpp
parent4b50b01f998e575e3c219146c969332a1b0163db (diff)
downloadraul-8350acca946fc925d359f2d7c8f342cef8f5b71b.tar.gz
raul-8350acca946fc925d359f2d7c8f342cef8f5b71b.tar.bz2
raul-8350acca946fc925d359f2d7c8f342cef8f5b71b.zip
Use dynamic type IDs for Atoms (for direct compatibility with LV2 atoms).
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@4079 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'raul/URI.hpp')
-rw-r--r--raul/URI.hpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/raul/URI.hpp b/raul/URI.hpp
index 569be41..90d285c 100644
--- a/raul/URI.hpp
+++ b/raul/URI.hpp
@@ -23,7 +23,6 @@
#include <exception>
#include <ostream>
#include <glib.h>
-#include "raul/Atom.hpp"
namespace Raul {
@@ -95,8 +94,6 @@ public:
inline size_t find(const std::string& s) const { return str().find(s); }
inline size_t find_last_of(char c) const { return str().find_last_of(c); }
- inline operator Raul::Atom() const { return Raul::Atom(_str, 12345); }
-
private:
const char* _str;
};