summaryrefslogtreecommitdiff
path: root/libs/pbd/pbd/id.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/pbd/pbd/id.h')
-rw-r--r--libs/pbd/pbd/id.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/libs/pbd/pbd/id.h b/libs/pbd/pbd/id.h
new file mode 100644
index 0000000000..95ac00bed0
--- /dev/null
+++ b/libs/pbd/pbd/id.h
@@ -0,0 +1,34 @@
+#ifndef __pbd_id_h__
+#define __pbd_id_h__
+
+#include <uuid/uuid.h>
+#include <string>
+
+namespace PBD {
+
+class ID {
+ public:
+ ID ();
+ ID (std::string);
+
+ bool operator== (const ID& other) const;
+ bool operator!= (const ID& other) const {
+ return !operator== (other);
+ }
+ ID& operator= (std::string);
+
+ bool operator< (const ID& other) const {
+ return memcmp (id, other.id, sizeof (id)) < 0;
+ }
+
+ void print (char* buf) const;
+
+ private:
+ uuid_t id;
+ int string_assign (std::string);
+};
+
+}
+std::ostream& operator<< (std::ostream& ostr, const PBD::ID&);
+
+#endif /* __pbd_id_h__ */