mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-10-14 10:55:04 +08:00
13 lines
334 B
C#
13 lines
334 B
C#
namespace UglyToad.PdfPig.Graphics
|
|
{
|
|
using System.Collections.Generic;
|
|
using Operations;
|
|
using Tokens;
|
|
using Util.JetBrains.Annotations;
|
|
|
|
internal interface IGraphicsStateOperationFactory
|
|
{
|
|
[CanBeNull]
|
|
IGraphicsStateOperation Create(OperatorToken op, IReadOnlyList<IToken> operands);
|
|
}
|
|
} |