lazarus/components/plotfunction/regplotpanel.pp
2013-10-05 04:22:50 +00:00

27 lines
303 B
ObjectPascal

unit regplotpanel;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils,
plotpanel,
exprplotpanel,
lresources;
Procedure Register;
implementation
{$R regplotpanel.res}
Procedure Register;
begin
Classes.RegisterComponents('Misc',[TPlotFunctionPanel, TPlotExpressionPanel]);
end;
end.