#ifndef QMDIALOGSTATUS_H #define QMDIALOGSTATUS_H #include #include class QmDialogStatus : public QDialog { Q_OBJECT public: QmDialogStatus(QWidget *parent = 0); }; class QmDialogStatusTableItem : public QTableWidgetItem { public: QmDialogStatusTableItem ( const QString & text, int type = 0 ); QmDialogStatusTableItem ( int value, int type = 0 ); bool operator< ( const QTableWidgetItem & other ) const; }; #endif // QMDIALOGSTATUS_H