blob: c47ea2b1a16a027d675545e69c2cc52b40fa6f6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#include "rtclient.h"
#include "worker.hxx"
Worker::Worker()
{
rtclient_init("https://darapsa.co.id/rt");
}
void Worker::logIn(QString const& name, QString const& password)
{
rtclient_login(name.toLatin1().constData(), password.toLatin1().constData());
struct rt_user *user = NULL;
rtclient_userget(&user, name.toLatin1().constData());
if (user)
rtclient_userfree(user);
}
void Worker::search(QString const& owner)
{
QString query{"Owner='"};
query.append(owner);
query.append("'");
rtclient_search(query.toLatin1().constData());
}
Worker::~Worker()
{
rtclient_cleanup();
}
|