mirror of
https://github.com/leozide/leocad
synced 2024-11-17 07:47:55 +01:00
29 lines
426 B
C
29 lines
426 B
C
|
#ifndef LC_QCATEGORYDIALOG_H
|
||
|
#define LC_QCATEGORYDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
struct lcLibraryCategory;
|
||
|
|
||
|
namespace Ui {
|
||
|
class lcQCategoryDialog;
|
||
|
}
|
||
|
|
||
|
class lcQCategoryDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit lcQCategoryDialog(QWidget *parent, void *data);
|
||
|
~lcQCategoryDialog();
|
||
|
|
||
|
lcLibraryCategory *options;
|
||
|
|
||
|
public slots:
|
||
|
void accept();
|
||
|
|
||
|
private:
|
||
|
Ui::lcQCategoryDialog *ui;
|
||
|
};
|
||
|
|
||
|
#endif // LC_QCATEGORYDIALOG_H
|