summaryrefslogtreecommitdiffstats
path: root/src/sysInfo.h
blob: 7ed4d71c36c3bbbc7bce7e12ffb556641da824fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef SYSINFO_H
#define SYSINFO_H
#include "fbgui.h"
#include <qjson/serializer.h>
#include <QVariantMap>
#include <QString>

class sysInfo {
     public:
        sysInfo();
	~sysInfo();
	QString getInfo(QString& infoName); 	

     private:
	QJson::Serializer serializer;


	QByteArray getNames();
	QString getMACAddress();
	QString getIPAddress();
	QString getAllInfos();
};

#endif // SYSTEMINFO_H