mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-09 13:32:48 +02:00
24 lines
296 B
ObjectPascal
24 lines
296 B
ObjectPascal
unit frameprinterselector;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, FileUtil, LResources, Forms;
|
|
|
|
type
|
|
TframePrinterSel = class(TFrame)
|
|
private
|
|
{ private declarations }
|
|
public
|
|
{ public declarations }
|
|
end;
|
|
|
|
implementation
|
|
|
|
{$R frameprinterselector.lfm}
|
|
|
|
end.
|
|
|