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

Revision 2584, 527 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//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       
27
28protected:
29
30        std::string mFilename;
31};
32
33}
34
35#endif
Note: See TracBrowser for help on using the repository browser.