This repository has been archived on 2025-07-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
abtool/upackagelist.pas
2019-01-13 01:05:16 +08:00

21 lines
191 B
ObjectPascal

unit uPackageList;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, uPackage;
type
{ TPackageList }
TPackageList = class(TList)
end; // TPackageList
implementation
end.