]> git.saurik.com Git - apt-legacy.git/blame - ftparchive/apt-ftparchive.h
Drastic, sweeping modifications to support iPhone 1.2.0/2.0.
[apt-legacy.git] / ftparchive / apt-ftparchive.h
CommitLineData
da6ee469
JF
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
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
16#ifdef __GNUG__
17#pragma interface "apt-ftparchive.h"
18#endif
19
20#include <fstream>
21
22using std::ostream;
23using std::ofstream;
24
25extern ostream c0out;
26extern ostream c1out;
27extern ostream c2out;
28extern ofstream devnull;
29extern unsigned Quiet;
30
31#endif