#include "Processing.hxx"
#include "ProcessingComposite.hxx"
#include "TopLevelProcessing.hxx"
#include "InPort.hxx"
#include "OutPort.hxx"
#include "InControl.hxx"
#include "OutControl.hxx"
#include "Network.hxx"
#include "TypedInControl.hxx"
#include "TypedOutControl.hxx"
#include <cstring>
#include <string>
Go to the source code of this file.
Namespaces | |
namespace | CLAM |
Functions | |
void | CLAM::ConnectPorts (Processing &sender, const std::string &outPortName, Processing &receiver, const std::string &inPortName) |
Connects two ports of two processings selecting them by the port name. | |
void | CLAM::ConnectControls (Processing &sender, const std::string &outControlName, Processing &receiver, const std::string &inControlName) |
Connects two controls of two processings selecting them by the control name. | |
void | CLAM::ConnectTypedControls (Processing &sender, const std::string &typedOutControlName, Processing &receiver, const std::string &typedInControlName) |
Connects two typed controls of two processings selecting them by the control name. | |
void | CLAM::ConnectPorts (Processing &sender, unsigned outPortNumber, Processing &receiver, unsigned inPortNumber) |
Connects two ports of two processings selecting them by the port number. | |
void | CLAM::ConnectControls (Processing &sender, unsigned outControlNumber, Processing &receiver, unsigned inControlNumber) |
Free function that connects two controls. | |
void | CLAM::ConnectTypedControls (Processing &sender, unsigned typedOutControlNumber, Processing &receiver, unsigned typedInControlNumber) |
Free function that connects two typed controls. | |
void | CLAM::ConnectPorts (Processing &sender, unsigned outPortNumber, InPortBase &receiver) |
Connects a processing port, selected by number, to a free in port. | |
void | CLAM::ConnectPorts (OutPortBase &sender, Processing &receiver, unsigned inPortNumber) |
Connects a free port to one belonging to a processing selecting it by the port number. | |
void | CLAM::ConnectPorts (Processing &sender, std::string outPortName, InPortBase &in) |
void | CLAM::ConnectPorts (OutPortBase &out, Processing &receiver, std::string inPortName) |
void | CLAM::SendFloatToInControl (Processing &receiver, const std::string &inControlName, float value) |
Tries to send a float to an inaccessible InControl, this is kept for compatibility This function uses the InControl's name to identfy it. | |
void | CLAM::SendFloatToInControl (Processing &receiver, int inControlIndex, float value) |
Tries to send a float to an inaccessible InControl, this is kept for compatibility This function uses the InControl's registry index to identfy it. | |
void | CLAM::SendFloatToOutControl (Processing &sender, const std::string &inControlName, float value) |
Tries to send a float to an inaccessible OutControl, this is kept for compatibility This function uses the OutControl's registry index to identfy it. | |
void | CLAM::SendFloatToOutControl (Processing &sender, int inControlIndex, float value) |
Tries to send a float to an inaccessible OutControl, this is kept for compatibility This function uses the OutControl's registry index to identfy it. | |
float | CLAM::GetFloatFromInControl (Processing &proc, const std::string &inControlName) |
Gets a float from an inaccesible InControl, this is kept for compatibility This function uses the InControl's name to identfy it. | |
float | CLAM::GetFloatFromInControl (Processing &proc, int inControlIndex) |
Gets a float from an inaccesible InControl, this is kept for compatibility This function uses the InControl's name to identfy it. |