Files
UnrealEngineUWP/Engine/Source/Developer/FriendsAndChat/Private/Models/FriendsUserViewModel.h
Carlos Cuello 6f1ac76399 [INTEGRATE] UE4-LauncherDev->UE4 integrate all up to cl 2475889
[CL 2478426 by Carlos Cuello in Main branch]
2015-03-13 08:26:18 -04:00

21 lines
522 B
C++

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "IUserInfo.h"
class FFriendsUserViewModel
: public TSharedFromThis<FFriendsUserViewModel>
, public IUserInfo
{
public:
virtual ~FFriendsUserViewModel() {}
};
/**
* Creates the implementation for an FFriendsUserViewModel.
*
* @return the newly created FriendsUserViewModel implementation.
*/
FACTORY(TSharedRef< FFriendsUserViewModel >, FFriendsUserViewModel,
const TSharedRef<class FFriendsAndChatManager>& FFriendsAndChatManager);