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