Files
UnrealEngineUWP/Engine/Source/Developer/UnrealCodeAnalyzerTests/Private/ThreadSafety.h
Mikolaj Sieluzycki ddf0f7e588 Add basic UObject thread safety checks to UnrealCodeAnalyzer.
[CL 2631991 by Mikolaj Sieluzycki in Main branch]
2015-07-24 04:48:48 -04:00

16 lines
335 B
C++

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "ThreadSafety.generated.h"
UCLASS()
class UObjectDerivedThreadSafetyTest : public UObject
{
GENERATED_BODY()
public:
UObjectDerivedThreadSafetyTest();
virtual void PostInitProperties() override;
virtual void Serialize(FArchive& Ar) override;
};