﻿/*
 * Ref.:  _projets.js
 *
 * (c) 2011 jean.st_pierre@yahoo.com
 */


//
// Controleurs ----------------------------------------------------------------
//
//
class_liste_projets = function() {
    //
    // Lien vers JSON - 
    this.d = data;
    
    //
    // Presentation du developpeur - 
    this.ctrl_presentation = function() {
        //
        this.details_presentation = this.d.presentation;
        //
        return this.details_presentation;
    }
    
    //
    // Liste des projets TV5 - 
    this.ctrl_projets = function() {
        //
        this.projets = this.d.projets;
        //
        return this.projets;
    }
}
//
// Instantiation - 
lp = new class_liste_projets();
