{
}
unit TestUnit;
interface
uses
const
type
var
implementation
{$R *.dfm}
{ TBaseTestMsg }
procedure TBaseTestMsg.ShowTestMsg;
begin
end;
{ TTestMsgClass }
constructor TTestMsgClass.Create(AClass: TClass);
var
begin
end;
constructor TTestMsgClass.CreateEx(AClass: TClass);
begin
end;
destructor TTestMsgClass.Destroy;
begin
end;
{ TETestMsg }
procedure TETestMsg.ShowTestMsg;
begin
end;
{ TCTestMsg }
procedure TCTestMsg.ShowTestMsg;
begin
end;
//--------------------以下为测试代码--------------------------------
procedure TForm1.DoTest(AClass: TClass; ACreateEx:
Boolean);
var
begin
end;
procedure TForm1.Button1Click(Sender: TObject);
begin
end;
procedure TForm1.Button2Click(Sender: TObject);
begin
end;
end.