lazarus/components/printers/unix/frameprinterselector.pas
2013-09-28 15:57:45 +00:00

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.