mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-04 17:10:47 +08:00
15 lines
306 B
C++
15 lines
306 B
C++
#ifndef slic3r_GUI_WebView_hpp_
|
|
#define slic3r_GUI_WebView_hpp_
|
|
|
|
class wxWebView;
|
|
class wxWindow;
|
|
class wxString;
|
|
|
|
namespace WebView
|
|
{
|
|
wxWebView *CreateWebView(wxWindow *parent, const wxString& url);
|
|
bool run_script(wxWebView * webView, const wxString& msg);
|
|
};
|
|
|
|
#endif // !slic3r_GUI_WebView_hpp_
|