| 105 | bool IsEnabled() const { return bIsEnabled.load(std::memory_order_acquire); } |
| 106 | void Disable() { bIsEnabled.store(false, std::memory_order_release); } |
| 107 | void Enable() { bIsEnabled.store(true, std::memory_order_release); } |
| 108 | |
| 109 | const FPCGMetadataAttributeBase* InAttribute = nullptr; |
| 110 | FPCGMetadataAttributeBase* OutAttribute = nullptr; |
nothing calls this directly
no outgoing calls
no test coverage detected