* */
| 846 | * |
| 847 | */ |
| 848 | void |
| 849 | OutputForwardDeclarations(std::ostream &out) |
| 850 | { |
| 851 | outputln(out); |
| 852 | outputln(out); |
| 853 | output_comment_line(out, "--- FORWARD DECLARATIONS ---"); |
| 854 | for_each(FuncList.begin(), FuncList.end(), |
| 855 | std::bind2nd(std::ptr_fun(OutputForwardDecl), &out)); |
| 856 | } |
| 857 | |
| 858 | /* |
| 859 | * |
no test coverage detected