source:
trunk/VUT/GtpVisibilityPreprocessor/src/Exporter.cpp
@
162
Revision 162, 315 bytes checked in by bittner, 19 years ago (diff) |
---|
Line | |
---|---|
1 | |
2 | #include "X3dExporter.h" |
3 | |
4 | |
5 | Exporter * |
6 | Exporter::GetExporter(const string filename) |
7 | { |
8 | Exporter *e = NULL; |
9 | |
10 | if (strstr(filename.c_str(), ".x3d")) { |
11 | e = new X3dExporter(filename); |
12 | } else { |
13 | cerr<<"Error: Currently unsuported export format, filename "<<filename<<endl; |
14 | } |
15 | return e; |
16 | } |
17 |
Note: See TracBrowser
for help on using the repository browser.