8070e5ca4e47add8979801af20caacb66de1ffb6
[atutor.git] / mods / atutor_opencaps / opencaps / include / classes / caption_class.php
1 <?php\r
2 /*\r
3  * OpenCaps\r
4  * http://opencaps.atrc.utoronto.ca\r
5  * \r
6  * Copyright 2009 Heidi Hazelton\r
7  * Adaptive Technology Resource Centre, University of Toronto\r
8  * \r
9  * Licensed under the Educational Community License (ECL), Version 2.0. \r
10  * You may not use this file except in compliance with this License.\r
11  * http://www.opensource.org/licenses/ecl2.php\r
12  * \r
13  */\r
14 \r
15 class caption {\r
16         public $caption;\r
17         public $textStyles = array(); // \r
18         \r
19         function __construct($theCaption,$theTextStyles) {\r
20                 $this->caption = $theCaption;\r
21                 $this->textStyles= $theTextStyles;\r
22                 \r
23         }\r
24 }\r
25 \r
26 \r
27 ?>