* merged the apt--sane-handle-timeout--0 branch
[ntk/apt.git] / ftparchive / override.h
CommitLineData
b2e465d6
AL
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
64177f17 3// $Id: override.h,v 1.4 2001/06/26 02:50:27 jgg Exp $
b2e465d6
AL
4/* ######################################################################
5
6 Override
7
8 Store the override file.
9
10 ##################################################################### */
11 /*}}}*/
12#ifndef OVERRIDE_H
13#define OVERRIDE_H
14
15#ifdef __GNUG__
16#pragma interface "override.h"
17#endif
18
19#include <map>
20#include <string>
812f4169
AL
21
22using std::string;
23using std::map;
b2e465d6
AL
24
25class Override
26{
27 public:
28
29 struct Item
30 {
31 string Priority;
b2e465d6
AL
32 string OldMaint;
33 string NewMaint;
64177f17
AL
34
35 map<string,string> FieldOverride;
b2e465d6
AL
36 string SwapMaint(string Orig,bool &Failed);
37 };
38
39 map<string,Item> Mapping;
40
41 inline Item *GetItem(string Package)
42 {
43 map<string,Item>::iterator I = Mapping.find(Package);
44 if (I == Mapping.end())
45 return 0;
46 return &I->second;
47 };
48
49 bool ReadOverride(string File,bool Source = false);
64177f17 50 bool ReadExtraOverride(string File,bool Source = false);
b2e465d6 51};
64177f17 52
b2e465d6
AL
53#endif
54