* @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 */
| 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 |
nothing calls this directly
no outgoing calls
no test coverage detected