Revision 1 (by moose, 2006/03/06 10:00:33) Initial Import
#ifndef __MADCONFLBITEMPATH_H__
#define __MADCONFLBITEMPATH_H__

#include <qlistbox.h>
#include <qstring.h>
#include "MadConf.h"

class MadConfLBItemPath : public QListBoxText {
	public:
		MadConfLBItemPath (const QString &s, QListBox *parent) : QListBoxText(parent), path(s) { Init(); }
		~MadConfLBItemPath() { }

		QString &getPath() { return path; }
		void settext(const QString &s) { setText(s); }
	private:
		void Init();

		QString path;
};

#endif /* __MADCONFLBITEMPATH_H__ */