| 10 | namespace Valdi { |
| 11 | |
| 12 | Ref<ValueTypedProxyObject> PlatformObjectAttachments::Attachment::getProxy() const { |
| 13 | if (strongProxy != nullptr) { |
| 14 | return strongProxy; |
| 15 | } else { |
| 16 | return Ref<ValueTypedProxyObject>(weakProxy.lock()); |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | PlatformObjectAttachments::PlatformObjectAttachments() = default; |
| 21 |
no test coverage detected