~mvo/apt/mvo

« back to all changes in this revision

Viewing changes to ftparchive/apt-ftparchive.h

  • Committer: Arch Librarian
  • Date: 2004-09-20 16:56:32 UTC
  • Revision ID: Arch-1:apt@arch.ubuntu.com%apt--MAIN--0--patch-614
Join with aliencode
Author: jgg
Date: 2001-02-20 07:03:16 GMT
Join with aliencode

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// -*- mode: cpp; mode: fold -*-
 
2
// Description                                                          /*{{{*/
 
3
// $Id: apt-ftparchive.h,v 1.2 2001/02/20 07:03:18 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
 
 
22
extern ostream c0out;
 
23
extern ostream c1out;
 
24
extern ostream c2out;
 
25
extern ofstream devnull;
 
26
extern unsigned Quiet;
 
27
 
 
28
#endif