lazarus/components/printers/unix/frameprinterselector.pas

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.