You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
35 lines
744 B
C++
35 lines
744 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "Containers/UnrealString.h"
|
|
#include "CoreTypes.h"
|
|
#include "Logging/LogMacros.h"
|
|
#include "Templates/SharedPointer.h"
|
|
#include "Templates/UniquePtr.h"
|
|
|
|
DECLARE_LOG_CATEGORY_EXTERN(LogDatasmithDirectLinkExporterAPI, Log, All);
|
|
|
|
|
|
class IDatasmithScene;
|
|
|
|
namespace DirectLink
|
|
{
|
|
class FEndpoint;
|
|
}
|
|
|
|
class DATASMITHEXPORTER_API FDatasmithDirectLink
|
|
{
|
|
public:
|
|
static int32 ValidateCommunicationSetup();
|
|
static bool Shutdown();
|
|
|
|
public:
|
|
FDatasmithDirectLink();
|
|
|
|
bool InitializeForScene(const TSharedRef<IDatasmithScene>& Scene);
|
|
bool UpdateScene(const TSharedRef<IDatasmithScene>& Scene);
|
|
|
|
static TSharedRef<DirectLink::FEndpoint, ESPMode::ThreadSafe> GetEnpoint();
|
|
};
|