mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-02 13:23:44 +02:00
30 lines
403 B
ObjectPascal
30 lines
403 B
ObjectPascal
unit regplotpanel;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils,
|
|
plotpanel,
|
|
{$IFNDEF VER2_2}
|
|
exprplotpanel,
|
|
{$ENDIF VER2_2}
|
|
lresources;
|
|
|
|
Procedure Register;
|
|
|
|
implementation
|
|
|
|
Procedure Register;
|
|
|
|
begin
|
|
Classes.RegisterComponents('Misc',[TPlotFunctionPanel
|
|
{$IFNDEF VER2_2},TPlotExpressionPanel{$ENDIF VER2_2}]);
|
|
end;
|
|
|
|
initialization
|
|
{$i regplotpanel.lrs}
|
|
end.
|
|
|