mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-09-13 20:23:04 +02:00
24 lines
505 B
C
24 lines
505 B
C
|
#ifndef ELEMENTS_CATEGORY_DELETER_H
|
||
|
#define ELEMENTS_CATEGORY_DELETER_H
|
||
|
#include "elementscategory.h"
|
||
|
#include <QtGui>
|
||
|
class ElementsCategoryDeleter : public QWidget {
|
||
|
Q_OBJECT
|
||
|
// constructeurs, destructeur
|
||
|
public:
|
||
|
ElementsCategoryDeleter(const QString &, QWidget * = 0);
|
||
|
virtual ~ElementsCategoryDeleter();
|
||
|
private:
|
||
|
ElementsCategoryDeleter(const ElementsCategory &);
|
||
|
|
||
|
// methodes
|
||
|
public slots:
|
||
|
void exec();
|
||
|
|
||
|
// attributs
|
||
|
private:
|
||
|
ElementsCategory cat;
|
||
|
bool empty_category_path;
|
||
|
};
|
||
|
#endif
|