mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-02 18:43:39 +02:00
27 lines
303 B
ObjectPascal
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.
|
|
|