yacreader/YACReaderLibrary/add_label_dialog.h
Luis Ángel San Martín ac38de88e8 add label dialog
2014-10-31 14:33:53 +01:00

23 lines
327 B
C++

#ifndef ADD_LABEL_DIALOG_H
#define ADD_LABEL_DIALOG_H
#include <QtWidgets>
class AddLabelDialog : public QDialog
{
Q_OBJECT
public:
explicit AddLabelDialog(QWidget *parent = 0);
signals:
public slots:
protected:
QLineEdit * edit;
QListWidget * list;
};
#endif // ADD_LABEL_DIALOG_H