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.
|
#include "rolesform.h"
|
|
#include "ui_rolesform.h"
|
|
|
|
RolesForm::RolesForm(QWidget *parent) :
|
|
AutoForm<Role>(parent),
|
|
ui(new Ui::RolesForm)
|
|
{
|
|
ui->setupUi(this);
|
|
|
|
registerBinding(ui->active);
|
|
registerBinding(ui->name);
|
|
}
|
|
|
|
RolesForm::~RolesForm()
|
|
{
|
|
delete ui;
|
|
}
|