| 1 | <?php |
||
| 9 | abstract class AbstractDecoratorWriter |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @return ZipInterface |
||
| 13 | */ |
||
| 14 | abstract public function render(); |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var \PhpOffice\PhpPresentation\HashTable |
||
| 18 | */ |
||
| 19 | protected $oHashTable; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var PhpPresentation |
||
| 23 | */ |
||
| 24 | protected $oPresentation; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var ZipInterface |
||
| 28 | */ |
||
| 29 | protected $oZip; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @param HashTable $hashTable |
||
| 33 | * @return $this |
||
| 34 | */ |
||
| 35 | 180 | public function setDrawingHashTable(HashTable $hashTable) |
|
| 40 | |||
| 41 | /** |
||
| 42 | * @return HashTable |
||
| 43 | */ |
||
| 44 | 180 | public function getDrawingHashTable() |
|
| 48 | |||
| 49 | /** |
||
| 50 | * @param PhpPresentation $oPresentation |
||
| 51 | * @return $this |
||
| 52 | */ |
||
| 53 | 180 | public function setPresentation(PhpPresentation $oPresentation) |
|
| 58 | |||
| 59 | /** |
||
| 60 | * @return PhpPresentation |
||
| 61 | */ |
||
| 62 | 180 | public function getPresentation() |
|
| 66 | |||
| 67 | /** |
||
| 68 | * @param ZipInterface $oZip |
||
| 69 | * @return $this |
||
| 70 | */ |
||
| 71 | 180 | public function setZip(ZipInterface $oZip) |
|
| 76 | |||
| 77 | /** |
||
| 78 | * @return ZipInterface |
||
| 79 | */ |
||
| 80 | 180 | public function getZip() |
|
| 84 | } |
||
| 85 |