Added Yefei He's RoadRecords to the flt loader, these records will be

ignored by the loader, but will allow the loader to skip over them and
continue reading the rest of the file correctly.
This commit is contained in:
Robert Osfield
2002-07-10 09:32:44 +00:00
parent 44d0bb05e7
commit 46af97727a
5 changed files with 601 additions and 12 deletions

View File

@@ -0,0 +1,61 @@
// RoadRecords.cpp
#include "flt.h"
#include "Registry.h"
#include "RoadRecords.h"
using namespace flt;
////////////////////////////////////////////////////////////////////
//
// RoadSegmentRecord
//
////////////////////////////////////////////////////////////////////
RegisterRecordProxy<RoadSegmentRecord> g_RoadSegmentProxy;
RoadSegmentRecord::RoadSegmentRecord()
{
}
// virtual
RoadSegmentRecord::~RoadSegmentRecord()
{
}
////////////////////////////////////////////////////////////////////
//
// RoadConstructionRecord
//
////////////////////////////////////////////////////////////////////
RegisterRecordProxy<RoadConstructionRecord> g_RoadConstructionProxy;
RoadConstructionRecord::RoadConstructionRecord()
{
}
// virtual
RoadConstructionRecord::~RoadConstructionRecord()
{
}
////////////////////////////////////////////////////////////////////
//
// RoadPathRecord
//
////////////////////////////////////////////////////////////////////
RegisterRecordProxy<RoadPathRecord> g_RoadPathProxy;
RoadPathRecord::RoadPathRecord()
{
}
// virtual
RoadPathRecord::~RoadPathRecord()
{
}