2 * Copyright (C) 2007 Petri Damsten <damu@iki.fi>
3 * Copyright (C) 2007 Christopher Blauvelt <cblauvelt@gmail.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU Library General Public License version 2 as
7 * published by the Free Software Foundation
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details
14 * You should have received a copy of the GNU Library General Public
15 * License along with this program; if not, write to the
16 * Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
26 #include <QStringList>
31 class HddTemp
: public QObject
36 enum DataType
{Temperature
=0, Unit
};
38 HddTemp(QObject
*parent
=0);
40 QStringList
sources() const;
41 QVariant
data(const QString source
, const DataType type
) const;
48 QMap
<QString
, QList
<QVariant
> > m_data
;