00001 #pragma once
00002
00003 #include "ModelChannelData.h"
00004
00005 class CModelChannelFlat2Cat : public CModelChannelData
00006 {
00007 private:
00008 __uint32 numPopular;
00009 __uint32 probPopular;
00010
00011 public:
00012 CModelChannelFlat2Cat(
00013 __uint32 numChannels,
00014 __uint32 numPopular,
00015 double probPopular
00016 );
00017 ~CModelChannelFlat2Cat() {}
00018
00019 virtual void GenerateUptime(__uint32 &newCh, __time &duration);
00020 virtual void GenerateUptime(__uint32 oldCh, __time oldDuration, __uint32 &newCh, __time &duration);
00021 };