| 539 | |
| 540 | |
| 541 | bool Workflow::Insert(const string& activity, const string& newActivity) |
| 542 | { |
| 543 | char* buffer[1]; |
| 544 | buffer[0] = BNAllocString(newActivity.c_str()); |
| 545 | |
| 546 | bool result = BNWorkflowInsert(m_object, activity.c_str(), (const char**)buffer, 1); |
| 547 | BNFreeString(buffer[0]); |
| 548 | return result; |
| 549 | } |
| 550 | |
| 551 | |
| 552 | bool Workflow::Insert(const string& activity, const vector<string>& activities) |
no test coverage detected