blob: 47fc94854eb0ae904fd4aba85b219c330df1e942 (
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
|
#ifndef DATALOGMANAGER_H
#define DATALOGMANAGER_H
#include "watchconnector.h"
class DataLogManager : public QObject
{
Q_OBJECT
LOG4QT_DECLARE_QCLASS_LOGGER
public:
explicit DataLogManager(WatchConnector *watch, QObject *parent = 0);
signals:
public slots:
private:
void handleDataCommand(int session, const QByteArray &data);
private:
WatchConnector *watch;
};
#endif // DATALOGMANAGER_H
|