summaryrefslogtreecommitdiff
path: root/library/quuid.h
Side-by-side diff
Diffstat (limited to 'library/quuid.h') (more/less context) (ignore whitespace changes)
-rw-r--r--library/quuid.h27
1 files changed, 24 insertions, 3 deletions
diff --git a/library/quuid.h b/library/quuid.h
index 4f7a720..841a00f 100644
--- a/library/quuid.h
+++ b/library/quuid.h
@@ -1,5 +1,5 @@
/**********************************************************************
-** Copyright (C) 2000 Trolltech AS. All rights reserved.
+** Copyright (C) 2000-2002 Trolltech AS. All rights reserved.
**
-** This file is part of Qtopia Environment.
+** This file is part of the Qtopia Environment.
**
@@ -92,2 +92,12 @@ struct Q_EXPORT QUuid
+ inline bool operator<(const QUuid &orig) const
+ {
+ return ( memcmp(this, &orig, sizeof(QUuid)) < 0);
+ }
+
+ inline bool operator>(const QUuid &orig) const
+ {
+ return ( memcmp(this, &orig, sizeof(QUuid) ) > 0);
+ }
+
#if defined(Q_OS_WIN32)
@@ -121,2 +131,13 @@ struct Q_EXPORT QUuid
}
+
+ inline bool operator<(const QUuid &orig) const
+ {
+ return ( memcmp(this, &orig, sizeof(QUuid) ) < 0);
+ }
+
+ inline bool operator>(const QUuid &orig) const
+ {
+ return ( memcmp(this, &orig, sizeof(QUuid) ) > 0);
+ }
+
#endif
@@ -125,3 +146,3 @@ struct Q_EXPORT QUuid
{
- memcpy( this, &uuid, sizeof(uuid_t) );
+ memcpy( this, uuid, sizeof(uuid_t) );
}