804df229cb3fd58d6a9fc47da89f3f67ef1bbf3b
[staging/HomeScreen.git] / HomeScreen / src2 / usermanagement.h
1 #ifndef USERMANAGEMENT_H
2 #define USERMANAGEMENT_H
3
4 #include <QObject>
5 #include "applicationmodel.h"
6 #include <QTimer>
7 class UserManagement : public QObject
8 {
9     Q_OBJECT
10 public:
11     explicit UserManagement(QObject *home, QObject *shortcutArea, QObject *statusArea);
12
13 signals:
14
15 public slots:
16     void slot_timerTest();
17 private:
18     QObject *home;
19     QObject *shortcutArea;
20     QObject *statusArea;
21     ApplicationModel *appModel;
22     QTimer timerTest;
23     QString currentLanguage;
24 };
25
26 #endif // USERMANAGEMENT_H