00001 #pragma once
00002
00003 #include "ModelSelect.h"
00004
00005 class CModelSelectMaxRemaining : public CModelSelect
00006 {
00007 public:
00008 CModelSelectMaxRemaining(
00009 unsigned int numChannels,
00010 unsigned int numLayers,
00011 unsigned int numPeers
00012 );
00013 virtual ~CModelSelectMaxRemaining();
00014
00015 virtual CPeer** Select(__time time, __uint32 channel, __uint32 child);
00016 virtual CPeer* Select(__time time, __uint32 channel, __uint32 layer, __uint32 child);
00017 };
00018