Initial commit

This commit is contained in:
2019-01-13 01:05:16 +08:00
commit 1f20268830
140 changed files with 8757 additions and 0 deletions

20
upackagelist.pas Normal file
View File

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