43 [[nodiscard]] std::string
type()
const override;
68 void setPinIdentifiers(
size_t connectedPinIndex,
size_t otherPinIndex,
const std::vector<std::string>& dataIdentifiers);
Merges two input ports into a single output port.
Definition Merger.hpp:24
bool onCreateLink(OutputPin &startPin, InputPin &endPin) override
Called when a new link is to be established.
Merger & operator=(const Merger &)=delete
Copy assignment operator.
Merger(const Merger &)=delete
Copy constructor.
static std::string category()
String representation of the Class Category.
void updateOutputPin(const std::vector< std::string > &oldDataIdentifiers)
Checks if link on the pin is still valid and refreshes if so.
std::string type() const override
String representation of the Class Type.
void receiveData(InputPin::NodeDataQueue &queue, size_t pinIdx)
Receive data.
void setPinIdentifiers(size_t connectedPinIndex, size_t otherPinIndex, const std::vector< std::string > &dataIdentifiers)
Set the Pin Identifiers for the other pin depending on the connected pin.
Merger & operator=(Merger &&)=delete
Move assignment operator.
void afterDeleteLink(OutputPin &startPin, InputPin &endPin) override
Called when a link was deleted.
Merger()
Default constructor.
static constexpr size_t INPUT_PORT_INDEX_FLOW_SECOND
Flow.
Definition Merger.hpp:62
static constexpr size_t INPUT_PORT_INDEX_FLOW_FIRST
Flow.
Definition Merger.hpp:61
static std::string typeStatic()
String representation of the Class Type.
static constexpr size_t OUTPUT_PORT_INDEX_FLOW
Flow.
Definition Merger.hpp:60
~Merger() override
Destructor.
Merger(Merger &&)=delete
Move constructor.
Abstract parent class for all nodes.
Definition Node.hpp:86
Output pins of nodes.
Definition Pin.hpp:338