source: GTP/trunk/Lib/Vis/Preprocessing/src/ObjectsParser.h @ 2115

Revision 2115, 475 bytes checked in by mattausch, 17 years ago (diff)

changed pvs loading: loading objects in a first pass

Line 
1#ifndef __OBJECTSPARSER_H
2#define __OBJECTSPARSER_H
3
4#include "Parser.h"
5#include "Containers.h"
6
7namespace GtpVisibilityPreprocessor {
8
9class ViewCellsManager;
10class VspBspTree;
11class BoundingBoxConverter;
12class Environment;
13
14class ObjectsParser: public Parser
15{
16public:
17  ObjectsParser(): Parser() {}
18 
19  bool ParseObjects(const string &filename,
20                                        ObjectContainer &pvsObjects,
21                                        const ObjectContainer &preprocessorObjects);
22};
23
24}
25
26#endif
Note: See TracBrowser for help on using the repository browser.