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
351 B
C
26 lines
351 B
C
9 years ago
|
#ifndef USERFORM_H
|
||
|
#define USERFORM_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
#include "autoform.h"
|
||
|
#include "../data/core-data.h"
|
||
|
#include "core-odb.hxx"
|
||
|
|
||
|
namespace Ui {
|
||
|
class UserForm;
|
||
|
}
|
||
|
|
||
|
class UserForm : public AutoForm<User>
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit UserForm(QWidget *parent = 0);
|
||
|
~UserForm();
|
||
|
|
||
|
private:
|
||
|
Ui::UserForm *ui;
|
||
|
};
|
||
|
|
||
|
#endif // USERFORM_H
|