summaryrefslogblamecommitdiffstats
path: root/src/sysInfo.h
blob: 7ed4d71c36c3bbbc7bce7e12ffb556641da824fd (plain) (tree)
1
2
3
4
5
6
7

                 
                  

                             

                  






                                                



                                     
                                
                               
                              
  

                      
#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