diff options
| author | jhurst <jhurst@cinecert.com> | 2006-10-19 02:59:54 +0000 |
|---|---|---|
| committer | jhurst <> | 2006-10-19 02:59:54 +0000 |
| commit | 6b5d04290663a89cb8666cdc1c0df238d065a981 (patch) | |
| tree | 89a28617a95019d459bfe2a67a20b9225102e5a1 /src/KM_util.h | |
| parent | 82140b626463d12393c40bb34ff98433e16b2360 (diff) | |
Denis' bug fixes
Diffstat (limited to 'src/KM_util.h')
| -rwxr-xr-x | src/KM_util.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/KM_util.h b/src/KM_util.h index d210bb9..e01cd2b 100755 --- a/src/KM_util.h +++ b/src/KM_util.h @@ -276,6 +276,10 @@ namespace Kumu UUID(const UUID& rhs) : Identifier<UUID_Length>(rhs) {} virtual ~UUID() {} + inline const char* EncodeString(char* buf, ui32_t buf_len) const { + return bin2UUIDhex(m_Value, Size(), buf, buf_len); + } + inline const char* EncodeHex(char* buf, ui32_t buf_len) const { return bin2UUIDhex(m_Value, Size(), buf, buf_len); } @@ -325,6 +329,7 @@ namespace Kumu const Timestamp& operator=(const Timestamp& rhs); bool operator<(const Timestamp& rhs) const; + bool operator>(const Timestamp& rhs) const; bool operator==(const Timestamp& rhs) const; bool operator!=(const Timestamp& rhs) const; |
