Files
haiku-beta6/src/kits/media/OldSubscriber.cpp
T

161 lines
2.1 KiB
C++
Raw Normal View History

2002-07-09 12:24:59 +00:00
/***********************************************************************
* AUTHOR: Marcus Overhagen
* FILE: OldSubscriber.cpp
* DESCR:
***********************************************************************/
#include <OldSubscriber.h>
#include "debug.h"
/*************************************************************
* public BSubscriber
*************************************************************/
BSubscriber::BSubscriber(const char *name)
{
UNIMPLEMENTED();
}
BSubscriber::~BSubscriber()
{
UNIMPLEMENTED();
}
status_t
BSubscriber::Subscribe(BAbstractBufferStream *stream)
{
UNIMPLEMENTED();
2002-07-12 14:01:44 +00:00
return B_ERROR;
2002-07-09 12:24:59 +00:00
}
status_t
BSubscriber::Unsubscribe()
{
UNIMPLEMENTED();
2002-07-12 14:01:44 +00:00
return B_ERROR;
2002-07-09 12:24:59 +00:00
}
subscriber_id
BSubscriber::ID() const
{
UNIMPLEMENTED();
2002-07-12 14:01:44 +00:00
return 0;
2002-07-09 12:24:59 +00:00
}
const char *
BSubscriber::Name() const
{
UNIMPLEMENTED();
return NULL;
}
void
BSubscriber::SetTimeout(bigtime_t microseconds)
{
UNIMPLEMENTED();
}
bigtime_t
BSubscriber::Timeout() const
{
UNIMPLEMENTED();
2002-07-12 14:01:44 +00:00
return 0;
2002-07-09 12:24:59 +00:00
}
status_t
BSubscriber::EnterStream(subscriber_id neighbor,
bool before,
void *userData,
enter_stream_hook entryFunction,
exit_stream_hook exitFunction,
bool background)
{
UNIMPLEMENTED();
2002-07-12 14:01:44 +00:00
return B_ERROR;
2002-07-09 12:24:59 +00:00
}
status_t
BSubscriber::ExitStream(bool synch)
{
UNIMPLEMENTED();
2002-07-12 14:01:44 +00:00
return B_ERROR;
2002-07-09 12:24:59 +00:00
}
bool
BSubscriber::IsInStream() const
{
UNIMPLEMENTED();
2002-07-12 14:01:44 +00:00
return false;
2002-07-09 12:24:59 +00:00
}
/*************************************************************
* protected BSubscriber
*************************************************************/
status_t
BSubscriber::_ProcessLoop(void *arg)
{
UNIMPLEMENTED();
2002-07-12 14:01:44 +00:00
return B_ERROR;
2002-07-09 12:24:59 +00:00
}
status_t
BSubscriber::ProcessLoop()
{
UNIMPLEMENTED();
2002-07-12 14:01:44 +00:00
return B_ERROR;
2002-07-09 12:24:59 +00:00
}
BAbstractBufferStream *
BSubscriber::Stream() const
{
UNIMPLEMENTED();
return NULL;
}
/*************************************************************
* private BSubscriber
*************************************************************/
void
BSubscriber::_ReservedSubscriber1()
{
UNIMPLEMENTED();
}
void
BSubscriber::_ReservedSubscriber2()
{
UNIMPLEMENTED();
}
void
BSubscriber::_ReservedSubscriber3()
{
UNIMPLEMENTED();
}