12 lines
100 B
PHP
12 lines
100 B
PHP
|
<?
|
||
|
class hService
|
||
|
{
|
||
|
var $context;
|
||
|
|
||
|
function setContext(&$con)
|
||
|
{
|
||
|
$this->context = $con;
|
||
|
}
|
||
|
}
|
||
|
?>
|