Files
UnrealEngineUWP/Engine/Source/Developer/FriendsAndChat/Private/Models/FriendInviteList.h

22 lines
472 B
C++

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "IFriendList.h"
/**
* Class containing the friend information - used to build the list view.
*/
class FFriendInviteList
: public TSharedFromThis<FFriendInviteList>
, public IFriendList
{
};
/**
* Creates the implementation for an FFriendInviteList.
*
* @return the newly created FFriendInviteList implementation.
*/
FACTORY(TSharedRef< FFriendInviteList >, FFriendInviteList);