Files
PdfPig/src/UglyToad.PdfPig.Tests/Tokens/TestPdfTokenScanner.cs
2018-11-25 13:06:54 +00:00

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();
}
}
}