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 | |
---|
6 | using namespace std; |
---|
7 | |
---|
8 | |
---|
9 | namespace GtpVisibility { |
---|
10 | |
---|
11 | DummyPreprocessingManager::DummyPreprocessingManager(HierarchyInterface *hierarchyInterface) |
---|
12 | :PreprocessingManager(hierarchyInterface) |
---|
13 | { |
---|
14 | } |
---|
15 | |
---|
16 | |
---|
17 | bool 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 | |
---|
26 | bool 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.