// 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 { /// /// An element in a XSHD rule set. /// [Serializable] public abstract class XshdElement { /// /// Gets the line number in the .xshd file. /// public int LineNumber { get; set; } /// /// Gets the column number in the .xshd file. /// public int ColumnNumber { get; set; } /// /// Applies the visitor to this element. /// public abstract object AcceptVisitor(IXshdVisitor visitor); } }