ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
WriterPart.php
Go to the documentation of this file.
1 <?php
2 
4 
6 
7 abstract class WriterPart
8 {
14  private $parentWriter;
15 
21  public function getParentWriter()
22  {
23  return $this->parentWriter;
24  }
25 
29  public function __construct(Xlsx $pWriter)
30  {
31  $this->parentWriter = $pWriter;
32  }
33 }
__construct(Xlsx $pWriter)
Set parent Xlsx object.
Definition: WriterPart.php:29