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
460 B
C
28 lines
460 B
C
8 years ago
|
#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 = 0);
|
||
|
~AddServiceDialog();
|
||
|
|
||
|
QString description();
|
||
|
QDecDouble price();
|
||
|
|
||
|
private:
|
||
|
Ui::AddServiceDialog *ui;
|
||
|
};
|
||
|
|
||
|
#endif // ADDSERVICEDIALOG_H
|