/* * QListWidgetCurveItem.hpp * * Created on: Jan 30, 2011 * Author: landvogt */ #ifndef QLISTWIDGETCURVEITEM_HPP #define QLISTWIDGETCURVEITEM_HPP // include config.h #ifdef HAVE_CONFIG_H #include #endif #include /** * \class QListWidgetCurveItem * * The class only adds the curveName * property (as std::string) to the * QListWidgetItem class. * The curveName property should contain * the name by which the curve can be * retrieved from the registry. **/ class QListWidgetCurveItem : public QListWidgetItem { public: QListWidgetCurveItem(); ~QListWidgetCurveItem(); std::string curveName; signals: public slots: }; #endif // QLISTWIDGETCURVEITEM_HPP