Saeterprosjekt/src/core/redigerkundedialog.h

33 lines
615 B
C++

#ifndef REDIGERKUNDEDIALOG_H
#define REDIGERKUNDEDIALOG_H
#include <QDialog>
#include "datatypes.h"
namespace Ui {
class RedigerKundeDialog;
}
class RedigerKundeDialog : public QDialog
{
Q_OBJECT
public:
explicit RedigerKundeDialog(QWidget *parent = nullptr);
~RedigerKundeDialog();
void settInnGamleVerdier(KundeFil gjeldendeKundeFil);
signals:
void oppdaterKundeFil(KundeFil redigertKundeFil);
private slots:
void on_pushAvbryt_clicked();
void on_pushButton_clicked();
private:
Ui::RedigerKundeDialog *ui;
};
#endif // REDIGERKUNDEDIALOG_H