fpc/fcl/classes/intf.inc
2005-02-14 17:13:06 +00:00

121 lines
2.1 KiB
PHP

{
$Id$
This file is part of the Free Component Library (FCL)
Copyright (c) 2002 by the Free Pascal development team
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************}
constructor TInterfaceList.Create;
begin
end;
destructor TInterfaceList.Destroy;
begin
end;
function TInterfaceList.Get(i : Integer) : IUnknown;
begin
end;
function TInterfaceList.GetCapacity : Integer;
begin
end;
function TInterfaceList.GetCount : Integer;
begin
end;
procedure TInterfaceList.Put(i : Integer;item : IUnknown);
begin
end;
procedure TInterfaceList.SetCapacity(NewCapacity : Integer);
begin
end;
procedure TInterfaceList.SetCount(NewCount : Integer);
begin
end;
procedure TInterfaceList.Clear;
begin
end;
procedure TInterfaceList.Delete(index : Integer);
begin
end;
procedure TInterfaceList.Exchange(index1,index2 : Integer);
begin
end;
function TInterfaceList.First : IUnknown;
begin
end;
function TInterfaceList.IndexOf(item : IUnknown) : Integer;
begin
end;
function TInterfaceList.Add(item : IUnknown) : Integer;
begin
end;
procedure TInterfaceList.Insert(i : Integer;item : IUnknown);
begin
end;
function TInterfaceList.Last : IUnknown;
begin
end;
function TInterfaceList.Remove(item : IUnknown): Integer;
begin
end;
procedure TInterfaceList.Lock;
begin
end;
procedure TInterfaceList.Unlock;
begin
end;
function TInterfaceList.Expand : TInterfaceList;
begin
end;
{
$Log$
Revision 1.2 2005-02-14 17:13:11 peter
* truncate log
}