Returns and sets the string that defines the thread class.
# Get the value of the property.propertyValue = threadInfo_var.threadClass# Set the value of the property.threadInfo_var.threadClass = propertyValue
#include <Fusion/Features/ThreadInfo.h>// Get the value of the property.string propertyValue = threadInfo_var->threadClass();// Set the value of the property, where value_var is a string.bool returnValue = threadInfo_var->threadClass(value_var);