Operations
Project
public
OperationManager Operations
//List all the operations in the project. //Before run this function, do some analysis operations, such as linear fit. void Project_Operations() { OperationManager opManager; opManager = Project.Operations; int count = opManager.GetCount(); for(int index=0; index < count; index++) { OperationBase& op = opManager.GetOperation(index); string strName = op.GetName(); out_str(strName); } }
origin.h