You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
37 lines
697 B
C++
37 lines
697 B
C++
// Copyright 1998-2017 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Modules/ModuleInterface.h"
|
|
#include "IMessageRpcClient.h"
|
|
#include "IMessageRpcServer.h"
|
|
|
|
/**
|
|
* Interface for the MessagingRpc module.
|
|
*/
|
|
class IMessagingRpcModule
|
|
: public IModuleInterface
|
|
{
|
|
public:
|
|
|
|
/**
|
|
* Create a client for remote procedure calls.
|
|
*
|
|
* @return The RPC client.
|
|
*/
|
|
virtual TSharedRef<IMessageRpcClient> CreateRpcClient() = 0;
|
|
|
|
/**
|
|
* Create a server for remote procedure calls.
|
|
*
|
|
* @return The RPC server.
|
|
*/
|
|
virtual TSharedRef<IMessageRpcServer> CreateRpcServer() = 0;
|
|
|
|
public:
|
|
|
|
/** Virtual destructor. */
|
|
virtual ~IMessagingRpcModule() { }
|
|
};
|