summaryrefslogtreecommitdiff
path: root/src/KLV.h
diff options
context:
space:
mode:
authorjhurst <jhurst@cinecert.com>2016-05-09 18:18:42 +0000
committerjhurst <>2016-05-09 18:18:42 +0000
commit2b101472bf1f76db63ae1c97cf5393fe7195bcb1 (patch)
treeedf3c46b53393fc796d02d06130477e485639cc2 /src/KLV.h
parentcc05011a20424c6b855995b5965782582ca21c42 (diff)
Defined bool ASDCP::UL::operator<(const UL& rhs) const, which is needed to carry out the version-insensitive lookup policy when searching for ULs in a std::map<> of UL entries.
Diffstat (limited to 'src/KLV.h')
-rwxr-xr-xsrc/KLV.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/KLV.h b/src/KLV.h
index b49cd07..9bb1cb3 100755
--- a/src/KLV.h
+++ b/src/KLV.h
@@ -1,5 +1,5 @@
/*
-Copyright (c) 2005-2011, John Hurst
+Copyright (c) 2005-2016, John Hurst
All rights reserved.
Redistribution and use in source and binary forms, with or without
@@ -107,6 +107,7 @@ inline const char* ui64sz(ui64_t i, char* buf)
const char* EncodeString(char* str_buf, ui32_t buf_len) const;
bool operator==(const UL& rhs) const;
+ bool operator<(const UL& rhs) const;
bool MatchIgnoreStream(const UL& rhs) const;
bool ExactMatch(const UL& rhs) const;
};