summaryrefslogtreecommitdiff
path: root/project2/uuid/uuid.h
diff options
context:
space:
mode:
Diffstat (limited to 'project2/uuid/uuid.h')
-rw-r--r--project2/uuid/uuid.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/project2/uuid/uuid.h b/project2/uuid/uuid.h
deleted file mode 100644
index 76d812d..0000000
--- a/project2/uuid/uuid.h
+++ /dev/null
@@ -1,32 +0,0 @@
-#ifndef UUID_H
-#define UUID_H
-
-#include <string>
-
-#ifndef uuid_impl
-class uuid_impl;
-#endif
-
-class UUID {
- public:
- UUID();
- ~UUID();
- UUID(uuid_impl * _uuid);
- UUID(const UUID &);
- UUID(const std::string &);
-
- static UUID generate_random();
-
- UUID & operator=(const UUID & other);
- UUID & operator=(const std::string &);
-
- bool operator!=(const UUID & other) const;
- bool is_nil() const;
-
- std::string str() const;
-
- private:
- uuid_impl * _uuid;
-};
-
-#endif