Now it compiles again

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1856 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
mahlzeit
2002-11-05 18:07:28 +00:00
parent 236b9aaa29
commit 8bc669cf72
2 changed files with 20 additions and 3 deletions
+2
View File
@@ -5,6 +5,8 @@
* @author Jerome Leveque
*/
#include <MidiRoster.h>
#include "debug.h"
#include "MidiEndpoint.h"
+18 -3
View File
@@ -13,39 +13,52 @@
status_t BMidiProducer::Connect(BMidiConsumer* toObject)
{
/*
if (toObject != NULL)
{
if (fConnections->Add(toObject) == true)
{
fConnectionCount++;
}
}
BMidiRoster *roster = BMidiRoster::MidiRoster();
return roster->Connect(this, toObject);
*/
return B_ERROR;
}
//------------------------------------------------------------------------------
status_t BMidiProducer::Disconnect(BMidiConsumer* toObject)
{
/*
if (toObject != NULL)
{
if (fConnections->Remove(toObject) == true)
{
fConnectionCount--;
BMidiRoster *roster = BMidiRoster::MidiRoster();
return roster->Disconnect(this, toObject);
}
return B_ERROR;
}
*/
return B_ERROR;
}
//------------------------------------------------------------------------------
bool BMidiProducer::IsConnected(BMidiConsumer* toObject) const
{
return fConnections->IsIn(toObject);
// return fConnections->IsIn(toObject);
return false;
}
//------------------------------------------------------------------------------
BList* BMidiProducer::Connections() const
{
return fConnections;
// return fConnections;
return NULL;
}
//------------------------------------------------------------------------------
@@ -53,9 +66,11 @@ return fConnections;
BMidiProducer::BMidiProducer(const char* name)
: BMidiEndpoint(name)
{
/*
fConnections = new BMidiList();
fConnectionCount = 1;
fLock = BLocker("BMidiProducer Lock");
*/
}
//------------------------------------------------------------------------------