33 #include "DspThread.h"
50 DspWireBus(
bool isLinkedComponentReceivingSignals =
false );
53 bool AddWire(
DspComponent* linkedComponent,
unsigned short fromSignalIndex,
unsigned short toSignalIndex );
55 bool RemoveWire(
unsigned short wireIndex );
56 bool RemoveWire(
DspComponent* linkedComponent,
unsigned short fromSignalIndex,
unsigned short toSignalIndex );
58 void RemoveAllWires();
60 DspWire* GetWire(
unsigned short wireIndex );
62 unsigned short GetWireCount()
const;
65 bool _isLinkedComponentReceivingSignals;
66 std::vector< DspWire > _wires;
71 #endif // DSPWIREBUS_H