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

Class Index

ktop'SensorIntegerInfo (./kdeutils/ktop/gui/SensorClient.h:109)

class SensorIntegerInfo : public SensorTokenizer
{
public:
	SensorIntegerInfo(const QString& info)
		: SensorTokenizer(info, '\t') { }
	~SensorIntegerInfo() { }

	const QString& getName()
	{
		return ((*this)[0]);
	}
	long getMin()
	{
		return ((*this)[1].toLong());
	}
	long getMax()
	{
		return ((*this)[2].toLong());
	}
	const QString& getUnit()
	{
		return ((*this)[3]);
	}
} ;

ktop'SensorIntegerInfo::getUnit() (./kdeutils/ktop/gui/SensorClient.h:128)

	const QString& getUnit()
	{
		return ((*this)[3]);
	}
} ;