~ubuntu-branches/ubuntu/feisty/fpc/feisty

« back to all changes in this revision

Viewing changes to fcl/classes/intf.inc

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2007-01-27 20:08:50 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070127200850-9mrptaqqjsx9nwa7
Tags: 2.0.4-5
* Fixed Build-Depends.
* Add myself to Uploaders in debian/control.
* Make sure that the sources are really patched before building them.
* Build unit 'libc' on powerpc too.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
{
2
 
    $Id: intf.inc,v 1.2 2005/02/14 17:13:11 peter Exp $
3
 
    This file is part of the Free Component Library (FCL)
4
 
    Copyright (c) 2002 by the Free Pascal development team
5
 
 
6
 
    See the file COPYING.FPC, included in this distribution,
7
 
    for details about the copyright.
8
 
 
9
 
    This program is distributed in the hope that it will be useful,
10
 
    but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
 
 
13
 
 **********************************************************************}
14
 
 
15
 
    constructor TInterfaceList.Create;
16
 
      begin
17
 
      end;
18
 
 
19
 
 
20
 
    destructor TInterfaceList.Destroy;
21
 
      begin
22
 
      end;
23
 
 
24
 
 
25
 
    function TInterfaceList.Get(i : Integer) : IUnknown;
26
 
      begin
27
 
      end;
28
 
 
29
 
 
30
 
    function TInterfaceList.GetCapacity : Integer;
31
 
      begin
32
 
      end;
33
 
 
34
 
 
35
 
    function TInterfaceList.GetCount : Integer;
36
 
      begin
37
 
      end;
38
 
 
39
 
 
40
 
    procedure TInterfaceList.Put(i : Integer;item : IUnknown);
41
 
      begin
42
 
      end;
43
 
 
44
 
 
45
 
    procedure TInterfaceList.SetCapacity(NewCapacity : Integer);
46
 
      begin
47
 
      end;
48
 
 
49
 
 
50
 
    procedure TInterfaceList.SetCount(NewCount : Integer);
51
 
      begin
52
 
      end;
53
 
 
54
 
 
55
 
    procedure TInterfaceList.Clear;
56
 
      begin
57
 
      end;
58
 
 
59
 
 
60
 
    procedure TInterfaceList.Delete(index : Integer);
61
 
      begin
62
 
      end;
63
 
 
64
 
 
65
 
    procedure TInterfaceList.Exchange(index1,index2 : Integer);
66
 
      begin
67
 
      end;
68
 
 
69
 
 
70
 
    function TInterfaceList.First : IUnknown;
71
 
      begin
72
 
      end;
73
 
 
74
 
 
75
 
    function TInterfaceList.IndexOf(item : IUnknown) : Integer;
76
 
      begin
77
 
      end;
78
 
 
79
 
 
80
 
    function TInterfaceList.Add(item : IUnknown) : Integer;
81
 
      begin
82
 
      end;
83
 
 
84
 
 
85
 
    procedure TInterfaceList.Insert(i : Integer;item : IUnknown);
86
 
      begin
87
 
      end;
88
 
 
89
 
 
90
 
    function TInterfaceList.Last : IUnknown;
91
 
      begin
92
 
      end;
93
 
 
94
 
 
95
 
    function TInterfaceList.Remove(item : IUnknown): Integer;
96
 
      begin
97
 
      end;
98
 
 
99
 
 
100
 
    procedure TInterfaceList.Lock;
101
 
      begin
102
 
      end;
103
 
 
104
 
 
105
 
    procedure TInterfaceList.Unlock;
106
 
      begin
107
 
      end;
108
 
 
109
 
 
110
 
    function TInterfaceList.Expand : TInterfaceList;
111
 
      begin
112
 
      end;
113
 
 
114
 
 
115
 
{
116
 
  $Log: intf.inc,v $
117
 
  Revision 1.2  2005/02/14 17:13:11  peter
118
 
    * truncate log
119
 
 
120
 
}