| 31 | namespace URLabOpRegistry |
| 32 | { |
| 33 | void RegisterOp(FOpDecl Decl) |
| 34 | { |
| 35 | const FString Name = Decl.Name; |
| 36 | FRWScopeLock Lock(MapLock(), SLT_Write); |
| 37 | Map().Add(Name, MoveTemp(Decl)); |
| 38 | } |
| 39 | |
| 40 | void RegisterHandler(const FString& OpName, FHandler Fn) |
| 41 | { |
no outgoing calls
no test coverage detected