IdAllHeaderCoders.pas 714 B

12345678910111213141516171819202122232425262728293031323334
  1. unit IdAllHeaderCoders deprecated;
  2. interface
  3. {$i IdCompilerDefines.inc}
  4. {
  5. Note that this unit is simply for listing ALL Header coders in Indy.
  6. The user could then add this unit to a uses clause in their program and
  7. have all Header coders linked into their program.
  8. ABSOLUTELY NO CODE is permitted in this unit.
  9. }
  10. // RLebeau 2/14/09: this forces C++Builder to link to this unit so
  11. // the units can register themselves correctly at program startup...
  12. {$IFDEF HAS_DIRECTIVE_HPPEMIT_LINKUNIT}
  13. {$HPPEMIT LINKUNIT}
  14. {$ELSE}
  15. {$HPPEMIT '#pragma link "IdAllHeaderCoders"'}
  16. {$ENDIF}
  17. implementation
  18. uses
  19. IdHeaderCoderPlain,
  20. IdHeaderCoder2022JP,
  21. IdHeaderCoderIndy;
  22. {dee-duh-de-duh, that's all folks.}
  23. end.