namespace UglyToad.PdfPig.Content
{
using Outline.Destinations;
using Tokens;
///
/// Page factory interface.
///
/// The type of page the page factory creates.
public interface IPageFactory
{
///
/// Create the page.
///
TPage Create(int number,
DictionaryToken dictionary,
PageTreeMembers pageTreeMembers,
NamedDestinations namedDestinations);
}
}