summaryrefslogtreecommitdiffstats
path: root/ingen/URIs.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'ingen/URIs.hpp')
-rw-r--r--ingen/URIs.hpp18
1 files changed, 15 insertions, 3 deletions
diff --git a/ingen/URIs.hpp b/ingen/URIs.hpp
index a10cd30c..d38b840e 100644
--- a/ingen/URIs.hpp
+++ b/ingen/URIs.hpp
@@ -47,8 +47,8 @@ public:
struct Quark : public Raul::URI {
Quark(Ingen::Forge& forge, URIMap* map, const char* str);
- operator LV2_URID() const { return urid.get<LV2_URID>(); }
- operator Atom() const { return urid; }
+ operator LV2_URID() const { return urid.get<LV2_URID>(); }
+ explicit operator Atom() const { return urid; }
inline bool operator==(const Atom& rhs) const {
if (rhs.type() == urid.type()) {
@@ -59,6 +59,10 @@ public:
return false;
}
+ inline bool operator!=(const Atom& rhs) const {
+ return !operator==(rhs);
+ }
+
Atom urid;
Atom uri;
};
@@ -181,6 +185,14 @@ public:
const Quark time_speed;
};
+inline bool operator==(const Atom& a, const URIs::Quark& b) {
+ return b == a;
+}
+
+inline bool operator!=(const Atom& a, const URIs::Quark& b) {
+ return b != a;
+}
+
} // namespace Ingen
-#endif // INGEN_LV2URIMAP_HPP
+#endif // INGEN_URIS_HPP