]>
git.saurik.com Git - apt.git/blob - ftparchive/override.h
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: override.h,v 1.2 2001/02/20 07:03:18 jgg Exp $
4 /* ######################################################################
8 Store the override file.
10 ##################################################################### */
16 #pragma interface "override.h"
33 string
SwapMaint(string Orig
,bool &Failed
);
36 map
<string
,Item
> Mapping
;
38 inline Item
*GetItem(string Package
)
40 map
<string
,Item
>::iterator I
= Mapping
.find(Package
);
41 if (I
== Mapping
.end())
46 bool ReadOverride(string File
,bool Source
= false);