| 99 | #endif |
| 100 | |
| 101 | Application::Application(const bool isStandalone, const Type type) |
| 102 | : pData(new PrivateData(isStandalone, type)) |
| 103 | { |
| 104 | // build config sentinels |
| 105 | #ifdef DPF_DEBUG |
| 106 | fail_to_link_is_mismatch_dpf_debug_on.ok = true; |
| 107 | #else |
| 108 | fail_to_link_is_mismatch_dpf_debug_off.ok = true; |
| 109 | #endif |
| 110 | #ifdef DGL_USE_FILE_BROWSER |
| 111 | fail_to_link_is_mismatch_dgl_use_file_browser_on.ok = true; |
| 112 | #else |
| 113 | fail_to_link_is_mismatch_dgl_use_file_browser_off.ok = true; |
| 114 | #endif |
| 115 | #ifdef DGL_USE_WEB_VIEW |
| 116 | fail_to_link_is_mismatch_dgl_use_web_view_on.ok = true; |
| 117 | #else |
| 118 | fail_to_link_is_mismatch_dgl_use_web_view_off.ok = true; |
| 119 | #endif |
| 120 | #ifdef DGL_NO_SHARED_RESOURCES |
| 121 | fail_to_link_is_mismatch_dgl_no_shared_resources_on.ok = true; |
| 122 | #else |
| 123 | fail_to_link_is_mismatch_dgl_no_shared_resources_off.ok = true; |
| 124 | #endif |
| 125 | DISTRHO_SAFE_ASSERT(dpf_check_build_status()); |
| 126 | } |
| 127 | |
| 128 | Application::Application(int argc, char* argv[]) |
| 129 | : pData(new PrivateData(true, kTypeAuto)) |
nothing calls this directly
no test coverage detected