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

Revision 2656, 499 bytes checked in by mattausch, 16 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
16class LogWriter
17{
18public:
19
20        LogWriter();
21        LogWriter(const std::string &filename);
22        void SetFilename(const std::string &filename);
23
24        void Write(const int numSamples, const ViewCellContainer &viewcells);
25       
26
27protected:
28
29        std::string mFilename;
30};
31
32}
33
34#endif
Note: See TracBrowser for help on using the repository browser.