You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
34 lines
962 B
C++
34 lines
962 B
C++
// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "Core.h"
|
|
|
|
class SOURCECONTROLWINDOWS_API FSourceControlWindows
|
|
{
|
|
public:
|
|
/**
|
|
* Display check in dialog for the specified packages
|
|
*
|
|
* @param InPackageNames Names of packages to check in
|
|
*/
|
|
static bool PromptForCheckin(const TArray<FString>& InPackageNames);
|
|
|
|
/**
|
|
* Display file revision history for the provided packages
|
|
*
|
|
* @param InPackageNames Names of packages to display file revision history for
|
|
*/
|
|
static void DisplayRevisionHistory( const TArray<FString>& InPackagesNames );
|
|
|
|
/**
|
|
* Prompt the user with a revert files dialog, allowing them to specify which packages, if any, should be reverted.
|
|
*
|
|
* @param InPackageNames Names of the packages to consider for reverting
|
|
*
|
|
* @return true if the files were reverted; false if the user canceled out of the dialog
|
|
*/
|
|
static bool PromptForRevert(const TArray<FString>& InPackageNames );
|
|
};
|
|
|