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.
26 lines
414 B
C++
26 lines
414 B
C++
#ifndef ACCSERVICEFORM_H
|
|
#define ACCSERVICEFORM_H
|
|
|
|
#include <QWidget>
|
|
#include "autoform.h"
|
|
#include "data/accservice.h"
|
|
|
|
namespace Ui {
|
|
class AccServiceForm;
|
|
}
|
|
|
|
class AccServiceForm : public AutoForm<AccService>
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AccServiceForm(QWidget *parent = 0);
|
|
~AccServiceForm() override;
|
|
|
|
private:
|
|
Ui::AccServiceForm *ui;
|
|
// AutoForm interface
|
|
};
|
|
|
|
#endif // ACCSERVICEFORM_H
|