You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
21 lines
522 B
C++
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); |