XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
Comment.php
Go to the documentation of this file.
1 <?php
2 
7 {
8  public $data;
9  public $is_whitespace = true;
15  public function __construct($data, $line = null, $col = null) {
16  $this->data = $data;
17  $this->line = $line;
18  $this->col = $col;
19  }
20 }
21 
22 // vim: et sw=4 sts=4