Back to FabImage Library website
You are here: Start » Function Reference » Common » CopyObject
This is Filter Equivalent. This function may be present in generated code, but should not be used in hand-written code.
Header: | STD.h |
---|---|
Namespace: | fil |
Creates a copy of the input data.
Syntax
void fil::CopyObject ( const Type& inObject, Type& outObject )
Parameters
Name | Type | Default | Description | |
---|---|---|---|---|
![]() |
inObject | const Type& | Object to be copied | |
![]() |
outObject | Type& | Copy of the object |
Hints
- Use this filter to create a source of data for an HMI control.
- Use this filter to create a source of data that has to be used in several places of one macrofilter.
- Also consider creating a global parameter or an additional input of the current macrofilter.