You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
475 B
C++
28 lines
475 B
C++
#ifndef ADDSERVICEDIALOG_H
|
|
#define ADDSERVICEDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QDecDouble.hh>
|
|
#include <data/accservice.h>
|
|
|
|
namespace Ui {
|
|
class AddServiceDialog;
|
|
}
|
|
|
|
class AddServiceDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AddServiceDialog(AccServicePtr service, QWidget *parent = nullptr);
|
|
~AddServiceDialog() override;
|
|
|
|
QString description();
|
|
QDecDouble price();
|
|
|
|
private:
|
|
Ui::AddServiceDialog *ui;
|
|
};
|
|
|
|
#endif // ADDSERVICEDIALOG_H
|