Source Code (Use browser search to find items of interest.)

Class Index

kuser'KRow (./kdeadmin/kuser/krowtable.h:9)

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; }
};