UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
MovieSceneTrackRowDecoration.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreTypes.h"
8#include "MovieSceneTrackRowDecoration.generated.h"
9
10#define UE_API MOVIESCENE_API
11
12UCLASS(MinimalAPI, Transient)
16{
17public:
18
20
22
23 UE_API void SetMuted(int32 InRowIndex, bool bMuted);
24 UE_API bool IsMuted(int32 InRowIndex) const;
25
26 UE_API void SetSoloed(int32 InRowIndex, bool bSoloed);
27 UE_API bool IsSoloed(int32 InRowIndex) const;
28
29 UE_API void OnRowIndicesChanged(const TMap<int32, int32>& NewToOldRowIndices);
30
31private:
33};
34
35#undef UE_API
FPlatformTypes::int32 int32
A 32-bit signed integer.
Definition Platform.h:1125
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
#define UE_API
Definition MovieSceneTrackRowDecoration.h:10
#define GENERATED_BODY(...)
Definition ObjectMacros.h:765
#define UCLASS(...)
Definition ObjectMacros.h:776
Definition IMovieSceneDecoration.h:29
Definition UnrealString.h.inl:34
Definition MovieSceneTrackRowDecoration.h:16
Definition Object.h:95