intf.inc 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. {
  2. $Id$
  3. This file is part of the Free Component Library (FCL)
  4. Copyright (c) 2002 by the Free Pascal development team
  5. See the file COPYING.FPC, included in this distribution,
  6. for details about the copyright.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  10. **********************************************************************}
  11. constructor TInterfaceList.Create;
  12. begin
  13. end;
  14. destructor TInterfaceList.Destroy;
  15. begin
  16. end;
  17. function TInterfaceList.Get(i : Integer) : IUnknown;
  18. begin
  19. end;
  20. function TInterfaceList.GetCapacity : Integer;
  21. begin
  22. end;
  23. function TInterfaceList.GetCount : Integer;
  24. begin
  25. end;
  26. procedure TInterfaceList.Put(i : Integer;item : IUnknown);
  27. begin
  28. end;
  29. procedure TInterfaceList.SetCapacity(NewCapacity : Integer);
  30. begin
  31. end;
  32. procedure TInterfaceList.SetCount(NewCount : Integer);
  33. begin
  34. end;
  35. procedure TInterfaceList.Clear;
  36. begin
  37. end;
  38. procedure TInterfaceList.Delete(index : Integer);
  39. begin
  40. end;
  41. procedure TInterfaceList.Exchange(index1,index2 : Integer);
  42. begin
  43. end;
  44. function TInterfaceList.First : IUnknown;
  45. begin
  46. end;
  47. function TInterfaceList.IndexOf(item : IUnknown) : Integer;
  48. begin
  49. end;
  50. function TInterfaceList.Add(item : IUnknown) : Integer;
  51. begin
  52. end;
  53. procedure TInterfaceList.Insert(i : Integer;item : IUnknown);
  54. begin
  55. end;
  56. function TInterfaceList.Last : IUnknown;
  57. begin
  58. end;
  59. function TInterfaceList.Remove(item : IUnknown): Integer;
  60. begin
  61. end;
  62. procedure TInterfaceList.Lock;
  63. begin
  64. end;
  65. procedure TInterfaceList.Unlock;
  66. begin
  67. end;
  68. function TInterfaceList.Expand : TInterfaceList;
  69. begin
  70. end;
  71. {
  72. $Log$
  73. Revision 1.1 2003-10-06 21:01:06 peter
  74. * moved classes unit to rtl
  75. Revision 1.2 2002/09/07 15:15:24 peter
  76. * old logs removed and tabs fixed
  77. Revision 1.1 2002/07/16 13:32:51 florian
  78. + skeleton for TInterfaceList added
  79. }