blob: e25c9f7e92c4e514aa3a9728e0157bbacb8219eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
namespace WixToolset.Extensibility.Data
{
using WixToolset.Data;
/// <summary>
/// Interface for an included file.
/// </summary>
public interface IIncludedFile
{
/// <summary>
/// Gets the full path of the included file.
/// </summary>
/// <value>The full path of the included file.</value>
string Path { get; set; }
/// <summary>
/// Gets the source line numbers.
/// </summary>
/// <value>The source line numbers.</value>
SourceLineNumber SourceLineNumbers { get; set; }
}
}
|