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