implementing Element reading

This commit is contained in:
jriegel
2014-12-14 21:12:17 +01:00
committed by Stefan Tröger
parent 06186e6dcf
commit 708ab11e20
13 changed files with 351 additions and 4 deletions

View File

@@ -25,12 +25,14 @@
#endif
#include <Python.h>
#include <iostream>
#include <fstream>
#include <Base/Console.h>
#include <Base/FileInfo.h>
#include "TestJtReader.h"
#include "FcLodHandler.h"
TestJtReader::TestJtReader()
@@ -49,6 +51,15 @@ void TestJtReader::read(void)
for (std::vector<TOC_Entry>::const_iterator i = TocEntries.begin(); i != TocEntries.end(); ++i){
int segType = i->getSegmentType();
if (segType == 7){
FcLodHandler handler;
readLodSegment(*i, handler);
}
Base::Console().Log(i->toString().c_str());
}