apt-ftparchive.h 707 B

1234567891011121314151617181920212223242526272829303132
  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. #ifdef __GNUG__
  13. #pragma interface "apt-ftparchive.h"
  14. #endif
  15. #include <fstream>
  16. using std::ostream;
  17. using std::ofstream;
  18. extern ostream c0out;
  19. extern ostream c1out;
  20. extern ostream c2out;
  21. extern ofstream devnull;
  22. extern unsigned Quiet;
  23. #endif