10 lines
254 B
C#
10 lines
254 B
C#
using System.Collections.Generic;
|
|
using ICSharpCode.TextEditor.Document;
|
|
|
|
namespace ICSharpCode.TextEditor.Src.Document.FoldingStrategy
|
|
{
|
|
public interface IFoldingStrategyEx : IFoldingStrategy
|
|
{
|
|
List<string> GetFoldingErrors();
|
|
}
|
|
} |