/**
 * Contrôleur MVC pour les fonctions de cartographie FOAD.
 *
 * @package offre
 * @see ControleurCarto
 */
var ControleurCartoFoad = Class.create(ControleurCarto, {

	/**
	 * Constructeur : initialise le modèle et la vue.
	 */
	initialize: function() {
		this._modele = new ModeleCartoFoad();
		this._vue = new VueCartoFoad(this._modele, this);
	},

	affiche_drapeaux: function() {
		this._modele.charge_drapeaux();
	}
});
