<< PrevObject PrevalenceNext > >

Property object

 

class Int : public Property
{
public:
    Int() : val(0) { }
    Int(int i) : val(i) { }
    Int& operator=(int i) { setValue(i); return *this; }
    operator int() const { return value(); }
    ....
};