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