You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
493 B
34 lines
493 B
#ifndef CHARGE_RULES_H
|
|
#define CHARGE_RULES_H
|
|
|
|
#include <QDialog>
|
|
#include "cost.h"
|
|
|
|
namespace Ui {
|
|
class charge_rules;
|
|
}
|
|
|
|
class charge_rules : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit charge_rules(QWidget *parent = 0);
|
|
~charge_rules();
|
|
|
|
private slots:
|
|
void on_pushButton_2_clicked();
|
|
|
|
void on_pushButton_clicked();
|
|
|
|
signals:
|
|
void Signal_rules(double t,double m,double f,double max);
|
|
|
|
private:
|
|
Ui::charge_rules *ui;
|
|
cost *rule;
|
|
|
|
};
|
|
|
|
#endif // CHARGE_RULES_H
|