24 lines
301 B
C
24 lines
301 B
C
|
//
|
||
|
// Created by bbr on 18. 04. 2022..
|
||
|
//
|
||
|
|
||
|
#ifndef NAME_DIALOG_H
|
||
|
#define NAME_DIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include <comdel/domain/instance.h>
|
||
|
|
||
|
namespace display {
|
||
|
|
||
|
class NameDialog: public QDialog {
|
||
|
public:
|
||
|
NameDialog(domain::ComponentInstance *instance) {
|
||
|
|
||
|
}
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
#endif //sNAME_DIALOG_H
|