You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
* Fixed compile errors when compiling .h files in isolation #rb none [CL 25865668 by henrik karlsson in ue5-main branch]
33 lines
1.4 KiB
C++
33 lines
1.4 KiB
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
#pragma once
|
|
|
|
|
|
#include "Interfaces/MetasoundFrontendInterfaceBindingRegistry.h"
|
|
#include "Interfaces/MetasoundFrontendInterfaceRegistry.h"
|
|
#include "MetasoundFrontendDocument.h"
|
|
#include "MetasoundFrontendRegistryTransaction.h"
|
|
#include "UObject/NoExportTypes.h"
|
|
|
|
|
|
namespace Metasound::Frontend
|
|
{
|
|
class FInterfaceBindingRegistry : public IInterfaceBindingRegistry
|
|
{
|
|
public:
|
|
FInterfaceBindingRegistry() = default;
|
|
|
|
virtual ~FInterfaceBindingRegistry() = default;
|
|
|
|
virtual bool FindInterfaceBindingEntries(const FMetasoundFrontendVersion& InInputInterfaceVersion, TArray<const FInterfaceBindingRegistryEntry*>& OutEntries) const override;
|
|
|
|
virtual void RegisterInterfaceBinding(const FMetasoundFrontendVersion& InInputInterfaceVersion, TUniquePtr<FInterfaceBindingRegistryEntry>&& InEntry) override;
|
|
|
|
virtual bool UnregisterInterfaceBinding(const FMetasoundFrontendVersion& InInputInterfaceVersion, const FMetasoundFrontendVersion& InOutputInterfaceVersion) override;
|
|
|
|
virtual bool UnregisterAllInterfaceBindings(const FMetasoundFrontendVersion& InInputInterfaceVersion) override;
|
|
|
|
// MultiMap of interface bindings keyed by the shared input interface registry key for an array of connection-priority sorted bindings
|
|
TMultiMap<FInterfaceRegistryKey, TUniquePtr<FInterfaceBindingRegistryEntry>> Entries;
|
|
};
|
|
} // namespace Metasound::Frontend
|