| 12 | using AttributionFunction = const void* (*)(const AttributionFunctionCallback&); |
| 13 | |
| 14 | struct Attribution { |
| 15 | StringBox moduleName; |
| 16 | StringBox owner; |
| 17 | AttributionFunction fn; |
| 18 | |
| 19 | Attribution(const StringBox& moduleName, const StringBox& owner, AttributionFunction fn); |
| 20 | ~Attribution(); |
| 21 | }; |
| 22 | |
| 23 | } // namespace Valdi |
no outgoing calls
no test coverage detected