namespace UglyToad.PdfPig.Core { using System.IO; /// /// Indicates that a data structure can be written to an output stream. /// public interface IWriteable { /// /// Write the data to the output stream. /// void Write(Stream stream); } }