《Delphi COM深入编程》原书光盘

源代码在线查看: binintf.pas

软件大小: 5088 K
上传用户: lihuitao1987
关键词: Delphi COM 编程 光盘
下载地址: 免注册下载 普通下载 VIP

相关代码

				unit BinIntf;
				
				interface
				
				type
				  IOneDBin = interface
				    ['{7856B7E3-EF75-11D2-B3AB-0040F67455FE}']
				    procedure SetMaxValue(AMaxValue: Integer);
				    procedure AddItem(AQuantity: Integer; ADescription: WideString; AValue: Integer);
				    procedure Optimize;
				    function NextBin: Boolean;
				    function NextItem(var ADescription: WideString; var AValue: Integer): Boolean;
				  end;
				
				const
				  Class_NextFit: TGUID = '{7856B7E2-EF75-11D2-B3AB-0040F67455FE}';
				
				implementation
				
				end.
				 			

相关资源