Files
UnrealEngineUWP/Engine/Source/Developer/SessionServices/Public/Interfaces/ISessionServicesModule.h
Max Preussner a51c160dd7 redesigned the session browser to be more space efficient and easier to use
[CL 2045403 by Max Preussner in Main branch]
2014-04-23 18:44:18 -04:00

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( ) { }
};