* small changes to make the unittesting slightly more easy
[vsc.git] / _res / _libs / tspackage.class.php
blobd84f42090405f9323bba15cfb902ffa8955ea392
1 <?php
2 abstract class tsPackage {
3 protected $members = array ();
4 protected $path;
5 public function __construct () {
6 // echo $libPath = dirname(__FILE__);
7 // set_include_path(
8 // $libPath . PATH_SEPARATOR .
9 // get_include_path()
10 // );
11 // foreach ($this->members as $member) {
12 // if (is_file ($member.'class.php')) {
13 //// include ($member.'class.php');
14 // }
15 // }
18 public function getPackageIncludePath () {
19 return $this->path;
22 public function getPackageClasses () {
23 return __FILE__;