GetAttachedStreamInfos

Function Usage

Returns all the StreamInfo lists bound to the current operator.

Prototype

std::vector<StreamInfo> GetAttachedStreamInfos() const

Parameters

None

Returns

All StreamInfo lists bound to the current operator are returned.

Constraints

None

Examples

1
2
3
4
std::vector<StreamInfo> GetAttachedStreamInfos(ExeResGenerationContext* context) {
  std::vector<StreamInfo> streamInfoList = context->GetAttachedStreamInfos();
  ...
}