Files
UnrealEngineUWP/Engine/Source/Programs/UnrealDocTool/MarkdownMode/ToolWindow/MarkdownModeOptions.cs
Ben Marsh 149375b14b Update copyright notices to 2015.
[CL 2379638 by Ben Marsh in Main branch]
2014-12-07 19:09:38 -05:00

27 lines
709 B
C#

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
using Microsoft.VisualStudio.Shell;
namespace MarkdownMode.ToolWindow
{
public class MarkdownModeOptions : DialogPage
{
public delegate void MarkdownModeOptionsChangedHandler();
public event MarkdownModeOptionsChangedHandler Changed;
public string DoxygenBinaryPath { get; set; }
public string DoxygenXmlCachePath { get; set; }
public string UnrealDocToolPath { get; set; }
protected override void OnApply(DialogPage.PageApplyEventArgs e)
{
base.OnApply(e);
if (Changed != null)
{
Changed();
}
}
}
}