| 15 | // Grants access to the internal variant API |
| 16 | class VariantAttorney { |
| 17 | public: |
| 18 | template <typename TClient> |
| 19 | static auto getResourceManager(TClient& client) |
| 20 | -> decltype(client.getResourceManager()) { |
| 21 | return client.getResourceManager(); |
| 22 | } |
| 23 | |
| 24 | template <typename TClient> |
| 25 | static auto getData(TClient& client) -> decltype(client.getData()) { |
nothing calls this directly
no outgoing calls
no test coverage detected