mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-10-14 19:05:01 +08:00
44 lines
1.1 KiB
C#
44 lines
1.1 KiB
C#
// ReSharper disable ObjectCreationAsStatement
|
|
namespace UglyToad.PdfPig.Tests.Tokens
|
|
{
|
|
using System;
|
|
using PdfPig.Tokenization;
|
|
using PdfPig.Tokenization.Scanner;
|
|
using PdfPig.Tokens;
|
|
|
|
internal class TestPdfTokenScanner : IPdfTokenScanner
|
|
{
|
|
public bool MoveNext()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public IToken CurrentToken { get; set; }
|
|
public bool TryReadToken<T>(out T token) where T : class, IToken
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void Seek(long position)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public long CurrentPosition { get; set; }
|
|
public void RegisterCustomTokenizer(byte firstByte, ITokenizer tokenizer)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void DeregisterCustomTokenizer(ITokenizer tokenizer)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public ObjectToken Get(IndirectReference reference)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|