import isystem.connect as ic
def test_CTraceXMLExportFormat():
print("Example of creating XML trace export formatter...")
fmt = ic.CTraceXMLExportFormat()
fmt.setActivity(True)
fmt.setAddress(True)
fmt.setAUX(True)
fmt.setBusStatus(True)
print(f"Include labels: {fmt.isLabel()}")
print(f"Include OCT signals: {fmt.isOCT()}")
print(f"Include source lines: {fmt.isSourceLine()}")
print(f"Include timestamps: {fmt.isTime()}")
if __name__ == "__main__":
test_CTraceXMLExportFormat()