fpc/fcl/classes/intf.inc
peter 08d913f656 * classes moved to rtl for 1.1
* classes .inc and classes.pp files moved to fcl/classes for
    backwards 1.0.x compatiblity to have it in the fcl
2003-10-06 20:33:58 +00:00

129 lines
2.4 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.1 2003-10-06 20:33:58 peter
* classes moved to rtl for 1.1
* classes .inc and classes.pp files moved to fcl/classes for
backwards 1.0.x compatiblity to have it in the fcl
Revision 1.2 2002/09/07 15:15:24 peter
* old logs removed and tabs fixed
Revision 1.1 2002/07/16 13:32:51 florian
+ skeleton for TInterfaceList added
}