mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-09-14 20:33:05 +02:00
23 lines
394 B
C
23 lines
394 B
C
|
#ifndef DIALOGCONDUCTORAUTONUM_H
|
||
|
#define DIALOGCONDUCTORAUTONUM_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class DialogConductorAutoNum;
|
||
|
}
|
||
|
|
||
|
class DialogConductorAutoNum : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit DialogConductorAutoNum(QWidget *parent = 0);
|
||
|
~DialogConductorAutoNum();
|
||
|
|
||
|
private:
|
||
|
Ui::DialogConductorAutoNum *ui;
|
||
|
};
|
||
|
|
||
|
#endif // DIALOGCONDUCTORAUTONUM_H
|