summaryrefslogtreecommitdiff
path: root/logger.h
blob: 53d797e8d3885c14cf9ab671b3834f36513cf4da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef LOGGER_H
#define LOGGER_H

#include <QObject>
#include <QDateTime>
#include <QDBusInterface>
#include <QTimer>
#include <QString>

#include "sensorPlugins/stepCounter.h"
#include "sensorPlugins/heartrateSensor.h"

class Logger : public QObject
{
    Q_OBJECT
public:
    explicit Logger(QObject *parent = 0);
    virtual ~Logger() {};
private slots:
    void displayOn(QString displayState);

private:
    QDBusInterface *m_iface;
    bool heartrateSensorEnabled = true;
    HeartrateSensorPlugin *m_heartrateSensor;
    bool stepCounterEnabled = true;
    StepCounterPlugin *m_stepCounter;
};
void writeReadingToFile(QString data, QString filename);
QString getLineFromFile(int lineNumber, QString filename);

#endif // LOGGER_H