| 74 | } |
| 75 | |
| 76 | TArray<FOpDecl> GetAllOps() |
| 77 | { |
| 78 | FRWScopeLock Lock(MapLock(), SLT_ReadOnly); |
| 79 | TArray<FOpDecl> Out; |
| 80 | Out.Reserve(Map().Num()); |
| 81 | for (const TPair<FString, FOpDecl>& Kv : Map()) |
| 82 | { |
| 83 | Out.Add(Kv.Value); |
| 84 | } |
| 85 | return Out; |
| 86 | } |
| 87 | |
| 88 | bool IsEditorOnlyOp(const FString& OpName) |
| 89 | { |