Subversion Repositories Projects

Rev

Rev 239 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
239 Brean 1
/***************************************************************************
2
 *   Copyright (C) 2008 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 CSVLOGGER_H
22
#define CSVLOGGER_H
23
 
24
#include <QString>
25
#include <QTextStream>
26
#include <QFile>
240 Brean 27
#include <QDate>
28
#include <QTime>
29
#include "../global.h"
239 Brean 30
#include "../Classes/cSettings.h"
31
#include "DefaultLogger.h"
32
 
33
class CSVLogger : public DefaultLogger
34
{
35
private:
36
    // Object für das Datenfile;
37
    QFile * csvfile;
38
    cSettings * settings;
240 Brean 39
    sMode * mode;
239 Brean 40
public:
240 Brean 41
    CSVLogger(cSettings * settings, sMode * mode);
239 Brean 42
    ~CSVLogger();
43
 
44
    //schreibe log
45
    void write(int * analogData);
46
 
47
    //erzeuge neue Log-Datei/neuen Datensatz
240 Brean 48
    void newLog();
239 Brean 49
 
50
    //alles bereit zum schreiben?
51
    bool ready();
52
 
53
    //alles schließen
54
    void close();
55
};
56
 
57
#endif