00001 #include "Headers.h"
00002 #include "Model.h"
00003
00004 CModel::CModel(
00005 __time maxTime,
00006 CTopo* topology
00007 )
00008 {
00009 assert(topology);
00010
00011 this->maxTime = maxTime;
00012
00013 this->topology = topology;
00014 }
00015
00016 void CModel::Run(CSimEvent* evt)
00017 {
00018 assert(evt);
00019 evt->Process();
00020 }