source: GTP/trunk/Lib/Vis/Preprocessing/src/QtInterface/LogWriter.h @ 2580

Revision 2580, 708 bytes checked in by mattausch, 17 years ago (diff)
Line 
1#ifndef __LOGWRITER_H
2#define __LOGWRITER_H
3
4#include <iostream>
5#include <fstream>
6#include <string>
7#include "common.h"
8#include "Containers.h"
9#include "LogReader.h"
10
11
12namespace GtpVisibilityPreprocessor
13{
14
15//class ViewCellContainer;
16
17class LogWriter
18{
19public:
20
21        LogWriter();
22        LogWriter(const std::string &filename);
23        void SetFilename(const std::string &filename);
24
25        //void Write(const int numSamples, const ViewCellContainer &viewcells);
26        void Write(//std::ofstream &myfile,
27                                const int numSamples, const ViewCellInfoContainer &infos);
28        //void Write(const ViewCellHistoryContainer &hist);
29
30protected:
31
32        //std::ofstream mFile;
33        std::string mFilename;
34};
35
36}
37
38#endif
Note: See TracBrowser for help on using the repository browser.