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