//
//
//
//
// $Revision$
//
using System;
using System.Collections.Generic;
namespace ICSharpCode.TextEditor.Document
{
///
/// This interface is used for the folding capabilities
/// of the textarea.
///
public interface IFoldingStrategy
{
///
/// Calculates the fold level of a specific line.
///
List GenerateFoldMarkers(IDocument document, string fileName, object parseInformation);
}
}