Files
UnrealEngine/Engine/Plugins/Media/ElectraCodecs/Source/ElectraDecoders/Public/Linux/LinuxElectraDecoderResourceDelegate.h
2025-05-18 13:04:45 +08:00

21 lines
453 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "HAL/Platform.h"
#include "IElectraDecoderResourceDelegateBase.h"
#if PLATFORM_LINUX || PLATFORM_UNIX
class IElectraDecoderResourceDelegateLinux : public IElectraDecoderResourceDelegateBase
{
public:
virtual ~IElectraDecoderResourceDelegateLinux() = default;
};
using IElectraDecoderResourceDelegate = IElectraDecoderResourceDelegateLinux;
#endif