D
doglive
Unregistered / Unconfirmed
GUEST, unregistred user!
unit formmaker;
interface
uses
SysUtils, Windows, Messages, Classes, Graphics, Controls, Forms, Dialogs;
type
IButton = interface(IInterface)
['{90013C12-3F95-4419-816A-5AA03AF279E9}']
end;
IPanel = interface(IUnknown)
['{5F0F0345-32B2-4C6A-BE15-01D60CE8628D}']
end;
TStandardPanel = class(TObject, IPanel)
end;
TArtPanel = class(TObject, IPanel)
end;
TFormMaker = class(TObject)
end;
implementation
end.
编译出现
[Error] formmaker.pas(17): Undeclared identifier: 'QueryInterface'
[Error] formmaker.pas(17): Undeclared identifier: '_AddRef'
[Error] formmaker.pas(17): Undeclared identifier: '_Release'
[Fatal Error] abstractFactory.dpr(6): Could not compile used unit 'formmaker.pas'
interface
uses
SysUtils, Windows, Messages, Classes, Graphics, Controls, Forms, Dialogs;
type
IButton = interface(IInterface)
['{90013C12-3F95-4419-816A-5AA03AF279E9}']
end;
IPanel = interface(IUnknown)
['{5F0F0345-32B2-4C6A-BE15-01D60CE8628D}']
end;
TStandardPanel = class(TObject, IPanel)
end;
TArtPanel = class(TObject, IPanel)
end;
TFormMaker = class(TObject)
end;
implementation
end.
编译出现
[Error] formmaker.pas(17): Undeclared identifier: 'QueryInterface'
[Error] formmaker.pas(17): Undeclared identifier: '_AddRef'
[Error] formmaker.pas(17): Undeclared identifier: '_Release'
[Fatal Error] abstractFactory.dpr(6): Could not compile used unit 'formmaker.pas'