Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
239 | Brean | 1 | /*************************************************************************** |
2 | * Copyright (C) 2009 by Manuel Schrape * |
||
3 | * manuel.schrape@gmx.de * |
||
4 | * and Andreas Bresser bresser@informatik.uni-bremen.de * |
||
5 | * * |
||
6 | * This program is free software; you can redistribute it and/or modify * |
||
7 | * it under the terms of the GNU General Public License as published by * |
||
8 | * the Free Software Foundation; either version 2 of the License. * |
||
9 | * * |
||
10 | * This program is distributed in the hope that it will be useful, * |
||
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * |
||
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * |
||
13 | * GNU General Public License for more details. * |
||
14 | * * |
||
15 | * You should have received a copy of the GNU General Public License * |
||
16 | * along with this program; if not, write to the * |
||
17 | * Free Software Foundation, Inc., * |
||
18 | * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * |
||
19 | ***************************************************************************/ |
||
20 | |||
21 | #ifndef LOGGER_H |
||
22 | #define LOGGER_H |
||
23 | |||
24 | #include <QLinkedList> |
||
25 | #include <QString> |
||
26 | #include "DefaultLogger.h" |
||
240 | Brean | 27 | #include "../global.h" |
239 | Brean | 28 | #include "../Classes/cSettings.h" |
29 | |||
30 | //Die verschiedenen header der einzelnen Logger |
||
31 | //TODO: MySQLLogger, SQLiteLogger und/oder PostGreSQLLogger |
||
32 | #include "CSVLogger.h" |
||
33 | |||
34 | class Logger |
||
35 | { |
||
36 | private: |
||
37 | CSVLogger * csv; |
||
38 | //Liste aller bekannten Logger |
||
39 | QLinkedList<DefaultLogger *> logger; |
||
40 | |||
41 | bool active; |
||
42 | |||
43 | public: |
||
240 | Brean | 44 | Logger(cSettings * settings, sMode * mode); |
239 | Brean | 45 | ~Logger(); |
46 | |||
47 | void start_Log(); |
||
48 | |||
49 | //soll geloggt werden? |
||
50 | bool is_active(); |
||
51 | |||
52 | //schreibe log |
||
53 | void write(int * analogData); |
||
54 | |||
55 | //alles schließen |
||
56 | void close(); |
||
57 | }; |
||
247 | Brean | 58 | #endif |