Line | |
---|
1 | #ifndef __LOGREADER_H
|
---|
2 | #define __LOGREADER_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 |
|
---|
12 |
|
---|
13 | namespace GtpVisibilityPreprocessor
|
---|
14 | {
|
---|
15 |
|
---|
16 |
|
---|
17 | struct ViewCellInfo
|
---|
18 | {
|
---|
19 | int mPiercingRays;
|
---|
20 | int mPvsSize;
|
---|
21 | };
|
---|
22 |
|
---|
23 | typedef std::vector<ViewCellInfo> ViewCellInfoContainer;
|
---|
24 | //typedef std::map<int, ViewCellInfoContainer *> ViewCellHistoryContainer;
|
---|
25 |
|
---|
26 |
|
---|
27 | class LogReader
|
---|
28 | {
|
---|
29 | public:
|
---|
30 | void SetFilename(const std::string &filename);
|
---|
31 |
|
---|
32 | /** Reads the info for several #samples.
|
---|
33 | */
|
---|
34 | //void Read(ViewCellHistoryContainer &history);
|
---|
35 | /** Reads the viewcells info from disc
|
---|
36 | */
|
---|
37 | void Read(int &numSamples, ViewCellInfoContainer &infos);
|
---|
38 |
|
---|
39 |
|
---|
40 | protected:
|
---|
41 |
|
---|
42 | std::string mFilename;
|
---|
43 | };
|
---|
44 |
|
---|
45 | }
|
---|
46 |
|
---|
47 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.