| 640 | } |
| 641 | QiIdList Action::loadId(QiType type) const |
| 642 | { |
| 643 | QiIdList id; |
| 644 | iter([&id](const Action& action) { id.append(action.base().id); return false; }, type); |
| 645 | return id; |
| 646 | } |
| 647 | |
| 648 | bool Actions::equals(const Actions& other) const |
| 649 | { |
| 650 | if (size() != other.size()) return false; |
no test coverage detected