#10 make all token classes public and expose via a public structure member on pdf document

This commit is contained in:
Eliot Jones
2018-11-24 19:02:06 +00:00
parent 8c0e8d5f26
commit 2fa781b8e9
49 changed files with 824 additions and 187 deletions

View File

@@ -2,8 +2,7 @@
{
using System;
using System.Collections.Generic;
using ContentStream;
using Cos;
using CrossReference;
using Parser.Parts;
using Tokens;

View File

@@ -4,16 +4,22 @@
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using ContentStream;
using Exceptions;
using Filters;
using IO;
using Parser.Parts;
using Tokens;
using Util;
/// <summary>
/// Tokenizes objects from bytes in a PDF file.
/// </summary>
internal interface IPdfTokenScanner : ISeekableTokenScanner
{
/// <summary>
/// Tokenize the object with a given object number.
/// </summary>
/// <param name="reference">The object number for the object to tokenize.</param>
/// <returns>The tokenized object.</returns>
ObjectToken Get(IndirectReference reference);
}