1234567891011121314151617181920 |
- #ifndef DDEVICEINFORMATION_H
- #define DDEVICEINFORMATION_H
- #include <QObject>
- class DDeviceInformation : public QObject
- {
- Q_OBJECT
- public:
- explicit DDeviceInformation(QObject *parent = 0);
- static QString getStyleName();
- static bool isTouchable();
- signals:
- public slots:
- };
- #endif // DDEVICEINFORMATION_H
|