1

I need to use TidHeaderList in my deviation of TidHTTP but cant find the unit it is included in.

Any hints?

Mike Torrettinni
  • 1,816
  • 2
  • 17
  • 47
Wolfgang Bures
  • 509
  • 4
  • 12
  • 2
    For future reference, if you use the IDE's *Search->Find in Files* and point it to the Indy directories and tell it to include subfolders, it can answer these sorts of question in less time than it took you to post this question here. It also works with the VCL and FMX source folders or any other folders that contain Delphi source. – Ken White Sep 09 '20 at 00:47

1 Answers1

3

Many of Indy's classes are implemented in their own units. A simple grep of Indy's source code (or a review of Indy's documentation) would have shown you that TIdHeaderList is in the IdHeaderList.pas unit (which is in the uses clause of the interface section of the IdHTTP.pas unit).

Remy Lebeau
  • 555,201
  • 31
  • 458
  • 770