namespace UglyToad.PdfPig.DocumentLayoutAnalysis.ReadingOrderDetector
{
using System.Collections.Generic;
///
/// This detector does nothing, no ordering takes place.
///
public class DefaultReadingOrderDetector : IReadingOrderDetector
{
///
/// Create an instance of default reading order detector, .
/// This detector does nothing, no ordering takes place.
///
public static DefaultReadingOrderDetector Instance { get; } = new DefaultReadingOrderDetector();
///
/// Gets the blocks in reading order and sets the .
///
/// The s to order.
public IEnumerable Get(IReadOnlyList textBlocks)
{
return textBlocks;
}
}
}