#ifndef LineItem_First #define LineItem_First #ifdef __GNUG__ #pragma interface #endif #include "VObject.h" //---- LineItem ---------------------------------------------------------------- class LineItem : public VObject { int lineWidth, minLength; bool dir; public: MetaDef(LineItem); LineItem(bool d= TRUE, int lw= 1, int ml= 20, int id= cIdNone); Metric GetMinSize(); void Draw(Rectangle); OStream &PrintOn(OStream&); IStream &ReadFrom(IStream&); }; #endif