00001 #include "Headers.h"
00002 #include "ModelSelectOptimal.h"
00003
00004 CModelSelectOptimal::CModelSelectOptimal(
00005 unsigned int numChannels,
00006 unsigned int numLayers,
00007 unsigned int numPeers
00008 ) : CModelSelect(numChannels, numLayers, numPeers)
00009 {
00010 }
00011
00012 CPeer** CModelSelectOptimal::Select(__time time, __uint32 channel, __uint32 child)
00013 {
00014 return this->SelectOptimal(time, channel, child);
00015 }
00016
00017 CPeer* CModelSelectOptimal::Select(__time time, __uint32 channel, __uint32 layer, __uint32 child)
00018 {
00019 return this->SelectOptimal(time, channel, layer, child);
00020 }