| 584 | ////////////////////////// OfxPushButtonInstance ///////////////////////////////////////////////// |
| 585 | |
| 586 | OfxPushButtonInstance::OfxPushButtonInstance(const OfxEffectInstancePtr& node, |
| 587 | OFX::Host::Param::Descriptor & descriptor) |
| 588 | : OfxParamToKnob(node) |
| 589 | , OFX::Host::Param::PushbuttonInstance( descriptor, node->effectInstance() ) |
| 590 | { |
| 591 | _knob = checkIfKnobExistsWithNameOrCreate<KnobButton>(descriptor.getName(), this, 1); |
| 592 | } |
| 593 | |
| 594 | // callback which should set enabled state as appropriate |
| 595 | void |
nothing calls this directly
no test coverage detected