1 | <?php |
||
5 | class Blip |
||
6 | { |
||
7 | /** |
||
8 | * The parent BSE. |
||
9 | * |
||
10 | * @var \PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer\BstoreContainer\BSE |
||
11 | */ |
||
12 | private $parent; |
||
13 | |||
14 | /** |
||
15 | * Raw image data. |
||
16 | * |
||
17 | * @var string |
||
18 | */ |
||
19 | private $data; |
||
20 | |||
21 | /** |
||
22 | * Get the raw image data. |
||
23 | * |
||
24 | * @return string |
||
25 | */ |
||
26 | public function getData() |
||
30 | |||
31 | /** |
||
32 | * Set the raw image data. |
||
33 | * |
||
34 | * @param string |
||
35 | * @param mixed $data |
||
36 | */ |
||
37 | public function setData($data) |
||
41 | |||
42 | /** |
||
43 | * Set parent BSE. |
||
44 | * |
||
45 | * @param \PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer\BstoreContainer\BSE $parent |
||
46 | */ |
||
47 | public function setParent($parent) |
||
51 | |||
52 | /** |
||
53 | * Get parent BSE. |
||
54 | * |
||
55 | * @return \PhpOffice\PhpSpreadsheet\Shared\Escher\DggContainer\BstoreContainer\BSE $parent |
||
56 | */ |
||
57 | public function getParent() |
||
61 | } |
||
62 |