mirror of
https://github.com/UglyToad/PdfPig.git
synced 2026-03-10 00:23:29 +08:00
11 lines
244 B
C#
11 lines
244 B
C#
namespace UglyToad.Pdf.Parser
|
|
{
|
|
using Content;
|
|
using Graphics;
|
|
using IO;
|
|
|
|
internal interface IPageContentParser
|
|
{
|
|
PageContent Parse(IGraphicsStateOperationFactory operationFactory, IInputBytes inputBytes);
|
|
}
|
|
} |