lazarus/ide/formeditor.pp
lazarus a60f0a22ae Start of code completion code.
Shane

git-svn-id: trunk@165 -
2001-02-02 14:23:38 +00:00

59 lines
1.3 KiB
ObjectPascal

{
/***************************************************************************
FormEditor.pp
-------------------
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
}
{$H+}
unit FormEditor;
{$mode objfpc}
interface
uses
classes, customformeditor,Controls, forms,buttons,sysutils,Graphics,Extctrls;
type
TFormEditor = class(TCustomFormEditor)
private
public
constructor Create;
destructor destroy; override;
end;
var
FormEditor1 : TFormEditor;
implementation
constructor TFormEditor.Create;
Begin
inherited;
end;
destructor TFormEditor.destroy;
Begin
inherited;
end;
end.