Citation:
unit UGestFiles;
interface
Type TGestFiles = class
nomfichier : string;
heure : integer;
taille : integer;
constructor Create;
//fonctions
function getindice : integer;
function getMaxIndice : integer;
function getMinIndice : integer;
function getNomFichier(indice : integer) : string;
function getHeure(indice : integer) : integer;
function getTaille(indice : integer) : integer;
procedure setFile(nom : string; heure, taille : integer);
end;
var TabFiles : array of TGestFiles;
idx : integer;
implementation
constructor TGestFiles.Create;
begin
idx := 0;
end;
J'ai une erreure dans "Constructor"