| 103 | } |
| 104 | |
| 105 | static bool create_master_trigger(file_tmpl& tmpl) |
| 106 | { |
| 107 | string file(tmpl.get_project_name()); |
| 108 | file << ".cf"; |
| 109 | if (!tmpl.copy_and_replace("master_trigger.cf", file.c_str())) { |
| 110 | return false; |
| 111 | } |
| 112 | |
| 113 | const char* name = "master_trigger"; |
| 114 | const FILE_FROM_TO tab[] = { |
| 115 | { "main_trigger.cpp", "main.cpp" }, |
| 116 | { "master_trigger.h", "master_service.h" }, |
| 117 | { "master_trigger.cpp", "master_service.cpp" }, |
| 118 | { NULL, NULL } |
| 119 | }; |
| 120 | |
| 121 | return tmpl.files_copy(name, tab); |
| 122 | } |
| 123 | |
| 124 | static bool create_master_udp(file_tmpl& tmpl) |
| 125 | { |
no test coverage detected
searching dependent graphs…