| 33 | // ---------------------------------------------------------------------------------------------------- |
| 34 | |
| 35 | InputNode::InputNode( const Format &format ) |
| 36 | : Node( format ) |
| 37 | { |
| 38 | if( getChannelMode() != ChannelMode::SPECIFIED ) |
| 39 | setChannelMode( ChannelMode::MATCHES_OUTPUT ); |
| 40 | |
| 41 | if( ! format.isAutoEnableSet() ) |
| 42 | setAutoEnabled( false ); |
| 43 | } |
| 44 | |
| 45 | InputNode::~InputNode() |
| 46 | { |
nothing calls this directly
no test coverage detected