It should be added that there is some ambiguity for the value of the flag. A flag could be either between 0 and 7, or an arbitrary int whose first 3 digits are the displayed flags.
Actually, the only time a number greater than 7 is generated, it's stored into the card's flags field, and never leave this object. So it's okay to use Flag object everywhere else.
It should be added that there is some ambiguity for the value of the flag. A flag could be either between 0 and 7, or an arbitrary int whose first 3 digits are the displayed flags.
Actually, the only time a number greater than 7 is generated, it's stored into the card's
flags
field, and never leave this object. So it's okay to useFlag
object everywhere else.