mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-18 19:42:44 +02:00
32 lines
614 B
ObjectPascal
32 lines
614 B
ObjectPascal
{
|
|
*****************************************************************************
|
|
This file is part of the Printer4Lazarus package
|
|
|
|
See the file COPYING.modifiedLGPL.txt, included in this distribution,
|
|
for details about the license.
|
|
*****************************************************************************
|
|
}
|
|
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.
|
|
|