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 DEFAULTLOGGER_H |
||
22 | #define DEFAULTLOGGER_H |
||
23 | |||
24 | #include <QString> |
||
25 | #include "../Classes/cSettings.h" |
||
26 | |||
27 | //Interface für einen Logger |
||
28 | class DefaultLogger |
||
29 | { |
||
30 | public: |
||
31 | //schreibe log |
||
32 | virtual void write(int *) { }; |
||
33 | |||
34 | //erzeuge neue Log-Datei/neuen Datensatz |
||
240 | Brean | 35 | virtual void newLog() { }; |
239 | Brean | 36 | |
37 | //alles bereit zum schreiben? |
||
38 | virtual bool ready() { return false; }; |
||
39 | |||
40 | //alles schließen |
||
41 | virtual void close() {}; |
||
247 | Brean | 42 | |
43 | virtual ~DefaultLogger() {}; |
||
239 | Brean | 44 | }; |
45 | |||
247 | Brean | 46 | #endif |