summaryrefslogtreecommitdiffstats
path: root/src/sysInfo.h
blob: ced1d56f6912556ca18fd10e476596f8ae410cd3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef SYSINFO_H
#define SYSINFO_H

#include <QString>

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

     private:
	QString getTime();
	QString getMACAddress();
};

#endif // SYSTEMINFO_H