using System; using System.Collections.Generic; using System.Text; using FastReport.Utils; namespace FastReport { /// /// Provides the serialize/deserialize functionality. /// public interface IFRSerializable { /// /// Serializes the object. /// /// Writer object. void Serialize(FRWriter writer); /// /// Deserializes the object. /// /// Reader object. void Deserialize(FRReader reader); } }