aboutsummaryrefslogtreecommitdiffstats
path: root/HomeScreen/src2/usermanagement.h
blob: 804df229cb3fd58d6a9fc47da89f3f67ef1bbf3b (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
#ifndef USERMANAGEMENT_H
#define USERMANAGEMENT_H

#include <QObject>
#include "applicationmodel.h"
#include <QTimer>
class UserManagement : public QObject
{
    Q_OBJECT
public:
    explicit UserManagement(QObject *home, QObject *shortcutArea, QObject *statusArea);

signals:

public slots:
    void slot_timerTest();
private:
    QObject *home;
    QObject *shortcutArea;
    QObject *statusArea;
    ApplicationModel *appModel;
    QTimer timerTest;
    QString currentLanguage;
};

#endif // USERMANAGEMENT_H