| 10 | /////////////// method for printing compilation settings //////////////////// |
| 11 | |
| 12 | void print_flags(ofstream& output) |
| 13 | { |
| 14 | output<<"compiler settings:"<<endl; |
| 15 | |
| 16 | #ifdef NO_SUPPORT_DRIVEN_METHODS |
| 17 | output<<"NO_SUPPORT_DRIVEN_METHODS"<<endl; |
| 18 | #endif |
| 19 | |
| 20 | #ifdef SUPPORT_DRIVEN_METHODS |
| 21 | |
| 22 | #ifdef NO_SUPPORT_DRIVEN_METHODS_EXTENDED |
| 23 | output<<"SUPPORT_DRIVEN_METHODS"<<endl; |
| 24 | #endif |
| 25 | |
| 26 | #ifdef SUPPORT_DRIVEN_METHODS_EXTENDED |
| 27 | output<<"SUPPORT_DRIVEN_METHODS_EXTENDED"<<endl; |
| 28 | output<<"List Support Variables: "<<endl; |
| 29 | output<<List_Support_Variables<<endl; |
| 30 | #endif |
| 31 | |
| 32 | #ifdef SUPPORT_VARIABLES_FIRST |
| 33 | output<<"SUPPORT_VARIABLES_FIRST"<<endl; |
| 34 | #endif |
| 35 | |
| 36 | #ifdef SUPPORT_VARIABLES_LAST |
| 37 | output<<"SUPPORT_VARIABLES_LAST"<<endl; |
| 38 | #endif |
| 39 | |
| 40 | #endif // SUPPORT_DRIVEN_METHODS |
| 41 | |
| 42 | #ifdef DL_LIST |
| 43 | output<<"doubly linked lists"<<endl<<endl; |
| 44 | #endif |
| 45 | |
| 46 | #ifdef SL_LIST |
| 47 | output<<"simply linked lists"<<endl<<endl; |
| 48 | #endif |
| 49 | |
| 50 | } |
| 51 | |
| 52 | |
| 53 |
no outgoing calls
no test coverage detected