Files
lazarus-ccr/components/jvcllaz/design/JvPascalInterpreter/jvpascalinterpreterreg.pas

26 lines
344 B
ObjectPascal

unit JvPascalInterpreterReg;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils;
procedure Register;
implementation
{$R ..\..\resource\jvpascalinterpreterreg.res}
uses
JvDsgnConsts, JvInterpreter;
procedure Register;
begin
RegisterComponents(RsPaletteJvclNonVisual, [TJvInterpreterProgram]); //, TJvInterpreterFm]);
end;
end.