File: //usr/local/lib/python3.6/site-packages/pptx/__pycache__/presentation.cpython-36.pyc
3
Zƍh
� @ s@ d Z ddlmZ ddlmZmZ ddlmZ G dd� de�ZdS )zMain presentation object.� )�PartElementProxy)�SlideMasters�Slides)�lazypropertyc @ s� e Zd ZdZedd� �Zedd� �Zdd� Zedd � �Zej d
d � �Zedd� �Z
ed
d� �Zedd� �Z
edd� �Zej dd� �Zedd� �ZdS )�Presentationz�PresentationML (PML) presentation.
Not intended to be constructed directly. Use :func:`pptx.Presentation` to open or
create a presentation.
c C s | j jS )z�
Instance of |CoreProperties| holding the read/write Dublin Core
document properties for this presentation.
)�part�core_properties)�self� r
�;/usr/local/lib/python3.6/site-packages/pptx/presentation.pyr s zPresentation.core_propertiesc C s | j jS )z�
Instance of |NotesMaster| for this presentation. If the presentation
does not have a notes master, one is created from a default template
and returned. The same single instance is returned on each call.
)r �notes_master)r r
r
r r s zPresentation.notes_masterc C s | j j|� dS )z�
Save this presentation to *file*, where *file* can be either a path
to a file (a string) or a file-like object.
N)r �save)r �filer
r
r r
"