Unity 8
platform.h
1 /*
2  * Copyright (C) 2015 Canonical, Ltd.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 3.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef PLATFORM_H
18 #define PLATFORM_H
19 
20 #include <QDBusInterface>
21 
27 class Platform: public QObject
28 {
29  Q_OBJECT
36  Q_PROPERTY(QString chassis READ chassis CONSTANT)
40  Q_PROPERTY(bool isPC READ isPC CONSTANT)
41 
42 public:
43  Platform(QObject *parent = nullptr);
44  ~Platform() = default;
45 
46  QString chassis() const;
47  bool isPC() const;
48 
49 private Q_SLOTS:
50  void init();
51 
52 private:
53  QDBusInterface m_iface;
54  QString m_chassis;
55  bool m_isPC;
56 };
57 
58 #endif // PLATFORM_H
The Platform class.
Definition: platform.h:27