- fixed pure virtual crash in server

This commit is contained in:
lordjaxom
2005-03-12 12:54:19 +00:00
parent 523779f9aa
commit 3aa0128266
4 changed files with 19 additions and 7 deletions

View File

@@ -257,6 +257,18 @@ void cStreamdevLiveStreamer::Del(int Count)
break;
}
}
void cStreamdevLiveStreamer::Attach(void)
{
printf("RIGHT ATTACH\n");
m_Device->AttachReceiver(m_Receiver);
}
void cStreamdevLiveStreamer::Detach(void)
{
printf("RIGHT DETACH\n");
m_Device->Detach(m_Receiver);
}
std::string cStreamdevLiveStreamer::Report(void)
{