Project::Operations

ClassName

Project

AccessType

public

Name

Operations

Declaration

OperationManager Operations

Remark

Examples

//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);
        }
}

Description

header to Include

origin.h

See Also

Reference