You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
357 B
22 lines
357 B
#ifndef _SYSFSPARSE_H_ |
|
#define _SYSFSPARSE_H_ |
|
|
|
#include <qstring.h> |
|
#include <qstringlist.h> |
|
|
|
class SysFS |
|
{ |
|
public: |
|
SysFS(); |
|
virtual ~SysFS(); |
|
bool hasHDAPS(); |
|
bool keyboardActivity(); |
|
bool mouseActivity(); |
|
QString position(); |
|
QStringList deviceList(); |
|
bool queueProtected(QString device); |
|
private: |
|
bool fileBool(QString path); |
|
}; |
|
|
|
#endif
|
|
|