 | InDesign SDK 20.5 |
30 #ifdef ID_ENABLE_DEBUGGING 41 bool16 operator==(
const ParcelKey& other)
const 42 {
return fV == other.fV; }
44 bool16 operator!=(
const ParcelKey& other)
const 45 {
return !(*
this == other); }
47 bool16 operator<(
const ParcelKey& other)
const 48 {
return fV < other.fV; }
50 bool16 IsValid()
const 51 {
return (this->fV != 0); }
58 #ifdef ID_ENABLE_DEBUGGING 60 {
char buf[10]; sprintf(buf,
"0x%x", fV);
return PMString(buf); }
63 {
char buf[10]; sprintf(buf,
"%u", fV);
return PMString(buf); }
72 #endif // __ParcelKey__