\brief Returns the format of an Algorithm input or output. Algorithm inputs are incrementally numbered first, followed by algorithm outputs. \param index Index of the input or output of the algorithm. Incremental numbers assigned to indices of inputs and the outputs. \return a pointer to a IAlgorithmIOInfo interface or nullptr if index is out of range.
| 8666 | //! \return a pointer to a IAlgorithmIOInfo interface or nullptr if index is out of range. |
| 8667 | //! |
| 8668 | IAlgorithmIOInfo const* getAlgorithmIOInfoByIndex(int32_t index) const noexcept |
| 8669 | { |
| 8670 | return mImpl->getAlgorithmIOInfoByIndex(index); |
| 8671 | } |
| 8672 | |
| 8673 | protected: |
| 8674 | virtual ~IAlgorithm() noexcept = default; |
no outgoing calls
no test coverage detected