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

Revision 2576, 605 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{
19        void SetFilename(const std::string &filename);
20
21        //void Write(const int numSamples, const ViewCellContainer &viewcells);
22        void Write(std::ofstream &myfile, const int numSamples, const ViewCellInfoContainer &infos);
23        void Write(const ViewCellHistoryContainer &hist);
24
25protected:
26
27        std::string mFilename;
28};
29
30}
31
32#endif
Note: See TracBrowser for help on using the repository browser.