package presentation; /** *The ExportedSlide class represents an exported slide that is created when a user *uses the ExportDialog. When a user exports a presentation it exports an ExportedPresentation, *represented as a collection of ExportedSlides and a collection of Topics, that represents *the outline associated with the presentation. An ExportedSlide is made up of a slide and the *layer associated with that slide. This is represented in section 2.4.3 of the requirements document. */ public abstract class ExportedSlide { /** *The slide to be exported. */ Slide slide; /** *The layer associated with the slide to be exported. */ layer.Layer layer; }