Delphi doesn't have multiple inheritance. More than likely it's interfaces- delphi can inherit from one class, and implement any number of additional interfaces. Typically the classes start with T and the interfaces start with I, but that's just a standard and not enforced.
Interfaces are a way of solving many of the same problems that multiple inheritance solves.
TealWren