blob: 395e32f8ba3a7a84087651c3a90670c59b2647a9 (
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
25
|
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
using System;
namespace ICSharpCode.AvalonEdit.Highlighting.Xshd
{
/// <summary>
/// <Import> element.
/// </summary>
[Serializable]
public class XshdImport : XshdElement
{
/// <summary>
/// Gets/sets the referenced rule set.
/// </summary>
public XshdReference<XshdRuleSet> RuleSetReference { get; set; }
/// <inheritdoc/>
public override object AcceptVisitor(IXshdVisitor visitor)
{
return visitor.VisitImport(this);
}
}
}
|