Fully mimics getOutList(int options)
| 420 | |
| 421 | // Fully mimics getOutList(int options) |
| 422 | std::vector<DepEdge> |
| 423 | DocumentObject::getOutListProp(int options) |
| 424 | { |
| 425 | std::vector<DepEdge> res; |
| 426 | getOutListProp(options, res); |
| 427 | return res; |
| 428 | } |
| 429 | |
| 430 | // Mimics getOutList(int options, std::vector<DocumentObject*>& res) except for |
| 431 | // an extra filter for ExpressionEngine that is handled in a later case. |
no test coverage detected