1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Added WinRT web view

This commit is contained in:
ed 2020-03-25 12:06:19 +00:00
parent 4e7eb0875b
commit 8f3b9036d6
7 changed files with 662 additions and 59 deletions

View file

@ -51,6 +51,7 @@ public:
~ComPtr() { release(); }
operator ComClass*() const noexcept { return p; }
ComClass* get() const noexcept { return p; }
ComClass& operator*() const noexcept { return *p; }
ComClass* operator->() const noexcept { return p; }