Expose operations.
# Get the value of the property.propertyValue = cAMTemplate_var.operations# Set the value of the property.cAMTemplate_var.operations = propertyValue
#include <Cam/CAMTemplate/CAMTemplate.h>// Get the value of the property.Ptr<CAMTemplateOperations> propertyValue = cAMTemplate_var->operations();// Set the value of the property, where value_var is a CAMTemplateOperations.bool returnValue = cAMTemplate_var->operations(value_var);
// Get the value of the property.propertyValue = cAMTemplate_var.operations;// Set the value of the property.cAMTemplate_var.operations = propertyValue;