--------------------------------------------------------------
| 839 | |
| 840 | // -------------------------------------------------------------- |
| 841 | void |
| 842 | MapVariableList(const vector<Variable*> &var, std::ostream &out, |
| 843 | int (*func)(Variable *var, std::ostream *pOut)) |
| 844 | { |
| 845 | for_each(var.begin(), var.end(), std::bind2nd(std::ptr_fun(func), &out)); |
| 846 | } |
| 847 | |
| 848 | // -------------------------------------------------------------- |
| 849 | void |
no test coverage detected