52 bool isValid() const noexcept {
return combinedID != 0; }
53 bool isInvalid() const noexcept {
return combinedID == 0; }
60 bool operator== (ProjectItemID other)
const {
return combinedID == other.combinedID; }
61 bool operator!= (ProjectItemID other)
const {
return combinedID != other.combinedID; }
62 bool operator< (ProjectItemID other)
const {
return combinedID < other.combinedID; }
68 ProjectItemID (
const juce::var&) =
delete;