Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes:

| >>>>> "Lars" == Lars Gullik Bjønnes <[EMAIL PROTECTED]> writes:
| 
| Lars> I am still looking at those enum names.
| 
| Lars> I have a strong dislike for cryptic abbreviations.
| 
| Lars> trackingOn, trackingOff, trackingUnknown would suit me better I
| Lars> think.
| 
| There is also Changes::On/Off/Unknown (which is much more readable),

Agree. A pity that enums are not first classs citizens.

struct TrackingState {
        enum type {
                on,
                off,
                unknown
        };
};

would take us closer, but has its own problems.

| but I am not sure the change tracking status really belongs in the
| Changes class.

true.

-- 
        Lgb

Reply via email to