5import isystem.connect
as ic
12 connMgr = ic.ConnectionMgr()
13 connMgr.connect(ic.CConnectionConfig().instanceId(winidea_id))
15 projCtrl = ic.CProjectController(connMgr)
17 bStatus = projCtrl.getStatus()
18 print(f
"Is idle: {bStatus.isIdle()}")
19 print(f
"Is idle with error: {bStatus.isIdleWError()}")
20 print(f
"Is configuration error: {bStatus.isConfigError()}")
21 print(f
"Is active: {bStatus.isActive()}")
22 print(f
"Get number of errors: {bStatus.getNumErrors()}")
23 print(f
"Get number of warnings: {bStatus.getNumWarnings()}")
26if __name__ ==
"__main__":