<?php
include_once( 'projets'.DIRECTORY_SEPARATOR.'projets.php' );
include_once( 'objects'.DIRECTORY_SEPARATOR.'objects.php' );
include_once( 'generation'.DIRECTORY_SEPARATOR.'generation.php' );
class DBframework{
var $oProjets = NULL;
var $oObjects = NULL;
var $oGeneration = NULL;
function DBframework(){
$this->oProjets = new DBprojets();
$this->oObjects = new DBobjects( $this->oProjets );
$this->oGeneration = new DBgeneration( $this->oProjets, $this->oObjects );
}
}
?>