using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ICSharpCode.WpfDesign.XamlDom
{
///
/// Interface where errors during XAML loading are reported.
///
public interface IXamlErrorSink
{
///
/// Reports a XAML load error.
///
void ReportError(string message, int line, int column);
}
}