| 226 | const std::shared_ptr<LineDataVector> &pldA, const std::shared_ptr<LineDataVector> &pldB, const std::shared_ptr<LineDataVector> &pldC); |
| 227 | |
| 228 | [[nodiscard]] inline std::shared_ptr<LineDataVector> getLineData(e_SrcSelector srcIndex) const |
| 229 | { |
| 230 | switch(srcIndex) |
| 231 | { |
| 232 | case e_SrcSelector::A: |
| 233 | return mLineDataA; |
| 234 | case e_SrcSelector::B: |
| 235 | return mLineDataB; |
| 236 | case e_SrcSelector::C: |
| 237 | return mLineDataC; |
| 238 | default: |
| 239 | return nullptr; |
| 240 | } |
| 241 | } |
| 242 | }; |
| 243 | |
| 244 | enum class IgnoreFlag |
nothing calls this directly
no outgoing calls
no test coverage detected