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.
30 lines
464 B
C++
30 lines
464 B
C++
#ifndef ROLESFORM_H
|
|
#define ROLESFORM_H
|
|
|
|
#include <QWidget>
|
|
#include "../autoform.h"
|
|
#include "../data/core-data.h"
|
|
|
|
namespace Ui {
|
|
class RolesForm;
|
|
}
|
|
|
|
class RolesForm : public AutoForm<Role>
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit RolesForm(QWidget *parent = 0);
|
|
~RolesForm();
|
|
|
|
private:
|
|
Ui::RolesForm *ui;
|
|
|
|
// AutoForm interface
|
|
protected:
|
|
virtual void bindOtherToUi() override;
|
|
virtual bool bindOtherToData() override;
|
|
};
|
|
|
|
#endif // ROLESFORM_H
|