Subversion Repositories computer_asset_manager_v2

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6 rodolico 1
<?php
2
 
3
   class client extends database {
4
      private var $definition; // the definition of the table in the database
5
 
6
      public function __construct ( $definition = null ) {
7
         parent::__construct();
8
         if ( isset( $definition ) )
9
            $this->definition = $definition;
10
      } // __construct
11
 
12
      public function __destruct() {
13
         parent::__destruct();
14
      } // destruct
15
 
16
 
17
 
18
 
19
   } // class client
20
 
21
?>            
22