123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- class PHPExcel_Shared_Escher_DggContainer_BstoreContainer
- {
-
- private $BSECollection = array();
-
- public function addBSE($BSE)
- {
- $this->BSECollection[] = $BSE;
- $BSE->setParent($this);
- }
-
- public function getBSECollection()
- {
- return $this->BSECollection;
- }
- }
|