lazarus/components/education/educationlaz.pas
mattias 207c9b617f education: using normal options framework
git-svn-id: trunk@20796 -
2009-07-06 07:31:22 +00:00

23 lines
470 B
ObjectPascal

{ This file was automatically created by Lazarus. do not edit!
This source is only used to compile and install the package.
}
unit EducationLaz;
interface
uses
EduEnvOptsFrame, EduOptions, EduPkgSystem, LazarusPackageIntf;
implementation
procedure Register;
begin
RegisterUnit('EduEnvOptsFrame', @EduEnvOptsFrame.Register);
RegisterUnit('EduPkgSystem', @EduPkgSystem.Register);
end;
initialization
RegisterPackage('EducationLaz', @Register);
end.