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
356 B
C++
26 lines
356 B
C++
#ifndef ROLESFORM_H
|
|
#define ROLESFORM_H
|
|
|
|
#include <QWidget>
|
|
#include "autoform.h"
|
|
#include "data/core-data.h"
|
|
#include "core-odb.hxx"
|
|
|
|
namespace Ui {
|
|
class RolesForm;
|
|
}
|
|
|
|
class RolesForm : public AutoForm<Role>
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit RolesForm(QWidget *parent = 0);
|
|
~RolesForm();
|
|
|
|
private:
|
|
Ui::RolesForm *ui;
|
|
};
|
|
|
|
#endif // ROLESFORM_H
|