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.
22 lines
433 B
C++
22 lines
433 B
C++
9 years ago
|
#include "users.h"
|
||
|
#include <QFile>
|
||
|
#include <QJsonDocument>
|
||
|
|
||
|
Users::Users()
|
||
|
{
|
||
|
Q_INIT_RESOURCE(rc);
|
||
|
|
||
|
QFile f (":/users/metaData.json");
|
||
|
f.open(QIODevice::ReadOnly | QIODevice::Text);
|
||
|
QJsonDocument d = QJsonDocument::fromJson(f.readAll());
|
||
|
init(d.object());
|
||
|
f.close();
|
||
|
}
|
||
|
|
||
|
void Users::initServiceUi()
|
||
|
{
|
||
|
m_service = new Service<User>;
|
||
|
m_ui = new UsersUi;
|
||
|
((UsersUi *) m_ui)->setForm(new UserForm);
|
||
|
}
|