source: GTP/trunk/Lib/Vis/OnlineCullingCHC/src/DummyPreprocessingManager.cpp @ 2353

Revision 2353, 568 bytes checked in by mattausch, 17 years ago (diff)

cleaned up project files

Line 
1#include "DummyPreprocessingManager.h"
2
3#include <iostream>
4#include <fstream>
5
6using  namespace std;
7
8
9namespace GtpVisibility {
10
11DummyPreprocessingManager::DummyPreprocessingManager(HierarchyInterface *hierarchyInterface)
12:PreprocessingManager(hierarchyInterface)
13{
14}
15
16
17bool DummyPreprocessingManager::ExportScene(const string &filename)
18{
19        ofstream s(filename.c_str());
20        s<<"#VRML 2.0 utf8"<<endl;
21        s<<"#Dummy module output"<<endl;
22        return true;
23}
24
25
26bool DummyPreprocessingManager::LoadPreprocessedData(const string &filename)
27{
28        // do nothing
29        return false;
30}
31
32
33}
Note: See TracBrowser for help on using the repository browser.