You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
38 lines
623 B
C++
38 lines
623 B
C++
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
|
|
// forward declarations
|
|
class ISessionManager;
|
|
class ISessionService;
|
|
|
|
|
|
/**
|
|
* Interface for session core modules.
|
|
*/
|
|
class ISessionServicesModule
|
|
: public IModuleInterface
|
|
{
|
|
public:
|
|
|
|
/**
|
|
* Gets the session manager.
|
|
*
|
|
* @return The session manager.
|
|
*/
|
|
virtual TSharedRef<ISessionManager> GetSessionManager() = 0;
|
|
|
|
/**
|
|
* Gets the session service.
|
|
*
|
|
* @return The session service.
|
|
*/
|
|
virtual TSharedRef<ISessionService> GetSessionService() = 0;
|
|
|
|
public:
|
|
|
|
/** Virtual destructor. */
|
|
virtual ~ISessionServicesModule() { }
|
|
};
|