class KRow
{
public:
KRow() {};
virtual ~KRow() {};
protected:
friend class KRowTable;
virtual void paint( QPainter *painter, int col, int width ) = 0;
private: // Disabled copy constructor and operator=
KRow( const KRow & ) {}
KRow& operator=( const KRow & ) { return *this; }
};