#include <ReshapeExecStream.h>
Public Member Functions | |
ReshapeParameter (DynamicParamId dynamicParamIdInit, uint compareOffsetInit, bool outputParamInit) | |
Public Attributes | |
DynamicParamId | dynamicParamId |
Dynamic parameter id. | |
uint | compareOffset |
Offset within the input tuple that this parameter should be compared against. | |
bool | outputParam |
If true, append this parameter to the end of the output tuple, in the order of the parameter ids. |
Definition at line 40 of file ReshapeExecStream.h.
ReshapeParameter::ReshapeParameter | ( | DynamicParamId | dynamicParamIdInit, | |
uint | compareOffsetInit, | |||
bool | outputParamInit | |||
) | [inline] |
Definition at line 59 of file ReshapeExecStream.h.
00062 : 00063 dynamicParamId(dynamicParamIdInit), 00064 compareOffset(compareOffsetInit), 00065 outputParam(outputParamInit) 00066 { 00067 } };
DynamicParamId ReshapeParameter::dynamicParamId |
Offset within the input tuple that this parameter should be compared against.
If no comparison needs to be done, the offset is set to MAXU.
Definition at line 51 of file ReshapeExecStream.h.
If true, append this parameter to the end of the output tuple, in the order of the parameter ids.
Definition at line 57 of file ReshapeExecStream.h.