We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a69bca7 commit 623272bCopy full SHA for 623272b
server/docs/2.5/README.md
@@ -490,7 +490,16 @@ int main() {
490
#### **C++**
491
<!-- ---------- -->
492
```cpp
493
-// In development...
+#include "webui.hpp"
494
+
495
+int main() {
496
497
+ size_t id = 1;
498
+ webui::window win(id);
499
500
+ // Later
501
+ win.show("index.html");
502
+}
503
```
504
505
#### **Python**
@@ -590,7 +599,16 @@ int main() {
590
599
591
600
592
601
593
602
603
604
605
606
+ size_t id = webui::get_new_window_id();
607
608
609
610
611
594
612
595
613
596
614
0 commit comments