// // @auteur : YopSolo // @mail : mail@yopsolo.fr // @site : http://www.yopsolo.fr // // caractères interdits dans les noms de cookies // espace ~ % & \ ; : " ' , < > ? # // // Attention au typage, les I/O sont des Strings. // class Gateau { // PROPS var _name:String; var _so:SharedObject; // CONSTRUCTEUR function Gateau(_n:String) { this._name = _n; this._so = SharedObject.getLocal(_n); } // ACCESSEURS function getData(prop:String):String { return this._so.data[prop]; } // SETTER function setData(prop:String, val:String):Void { this._so.data[prop] = val; } // detruit le cookie du poste client function remove(){ this._so.clear(); } }