You've already forked lazarus-ccr
37 lines
459 B
Plaintext
37 lines
459 B
Plaintext
![]() |
unit FFTUnit;
|
||
|
|
||
|
{$mode objfpc}{$H+}
|
||
|
|
||
|
interface
|
||
|
|
||
|
uses
|
||
|
Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs,
|
||
|
StdCtrls;
|
||
|
|
||
|
type
|
||
|
|
||
|
{ TFFTFrm }
|
||
|
|
||
|
TFFTFrm = class(TForm)
|
||
|
CancelBtn: TButton;
|
||
|
OKBtn: TButton;
|
||
|
NptsEdit: TEdit;
|
||
|
Label1: TLabel;
|
||
|
Memo1: TMemo;
|
||
|
private
|
||
|
{ private declarations }
|
||
|
public
|
||
|
{ public declarations }
|
||
|
end;
|
||
|
|
||
|
var
|
||
|
FFTFrm: TFFTFrm;
|
||
|
|
||
|
implementation
|
||
|
|
||
|
initialization
|
||
|
{$I fftunit.lrs}
|
||
|
|
||
|
end.
|
||
|
|