apt-ftparchive.h 647 B

1234567891011121314151617181920212223242526272829
  1. // -*- mode: cpp; mode: fold -*-
  2. // Description /*{{{*/
  3. // $Id: apt-ftparchive.h,v 1.3 2001/05/29 03:51:37 jgg Exp $
  4. /* ######################################################################
  5. Writer
  6. The file writer classes. These write various types of output, sources,
  7. packages and contents.
  8. ##################################################################### */
  9. /*}}}*/
  10. #ifndef APT_FTPARCHIVE_H
  11. #define APT_FTPARCHIVE_H
  12. #include <fstream>
  13. using std::ostream;
  14. using std::ofstream;
  15. extern ostream c0out;
  16. extern ostream c1out;
  17. extern ostream c2out;
  18. extern ofstream devnull;
  19. extern unsigned Quiet;
  20. #endif