123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- {
- $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 21:01:06 peter
- * moved classes unit to rtl
- 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
- }
|