MCPcopy Create free account
hub / github.com/Fattorino/ImNodeFlow / InPin

Method InPin

include/ImNodeFlow.h:1070–1071  ·  view source on GitHub ↗

* @brief Input pin constructor * @param name Name of the pin * @param filter Connection filter * @param parent Pointer to the Node containing the pin * @param defReturn Default return value when the pin is not connected * @param inf Pointer to the Grid Handler the pin is in (same as parent) * @param style Style of the pin */

Source from the content-addressed store, hash-verified

1068 * @param style Style of the pin
1069 */
1070 explicit InPin(PinUID uid, const std::string& name, T defReturn, std::function<bool(Pin*, Pin*)> filter, std::shared_ptr<PinStyle> style, BaseNode* parent, ImNodeFlow** inf)
1071 : Pin(uid, name, style, PinType_Input, parent, inf), m_emptyVal(defReturn), m_filter(std::move(filter)) {}
1072
1073 /**
1074 * @brief <BR>Create link between pins

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected