MCPcopy Create free account
hub / github.com/DISTRHO/DPF / Application

Method Application

dgl/src/Application.cpp:101–126  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

99#endif
100
101Application::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
128Application::Application(int argc, char* argv[])
129 : pData(new PrivateData(true, kTypeAuto))

Callers

nothing calls this directly

Calls 2

dpf_check_build_statusFunction · 0.85
dpf_webview_startFunction · 0.85

Tested by

no test coverage detected