| 407 | |
| 408 | |
| 409 | Ref<Workflow> Workflow::Clone(const string& name, const string& activity) |
| 410 | { |
| 411 | return new Workflow(BNWorkflowClone(m_object, name.c_str(), activity.c_str())); |
| 412 | } |
| 413 | |
| 414 | |
| 415 | Ref<Activity> Workflow::RegisterActivity(const string& configuration, const function<void(Ref<AnalysisContext>)>& action, const vector<string>& subactivities) |
no test coverage detected