~ubuntu-branches/ubuntu/trusty/apt/trusty

« back to all changes in this revision

Viewing changes to apt-pkg/edsp/edspindexfile.cc

  • Committer: Package Import Robot
  • Author(s): Michael Vogt
  • Date: 2014-04-01 17:48:58 UTC
  • mfrom: (1.4.87 sid)
  • Revision ID: package-import@ubuntu.com-20140401174858-4mv29mm29zu22fn1
Tags: 1.0.1ubuntu1
merge with the debian/sid 1.0.1 version
(LP: #1302033)

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
 
11
11
#include <apt-pkg/edspindexfile.h>
12
12
#include <apt-pkg/edsplistparser.h>
13
 
#include <apt-pkg/sourcelist.h>
14
 
#include <apt-pkg/configuration.h>
15
 
#include <apt-pkg/progress.h>
16
13
#include <apt-pkg/error.h>
17
 
#include <apt-pkg/strutl.h>
18
14
#include <apt-pkg/fileutl.h>
19
 
#include <apt-pkg/acquire-item.h>
 
15
#include <apt-pkg/progress.h>
 
16
#include <apt-pkg/debindexfile.h>
 
17
#include <apt-pkg/indexfile.h>
 
18
#include <apt-pkg/mmap.h>
 
19
#include <apt-pkg/pkgcache.h>
 
20
#include <apt-pkg/cacheiterators.h>
 
21
#include <apt-pkg/pkgcachegen.h>
 
22
#include <apt-pkg/pkgrecords.h>
20
23
 
21
 
#include <sys/stat.h>
 
24
#include <stddef.h>
 
25
#include <unistd.h>
 
26
#include <string>
22
27
                                                                        /*}}}*/
23
28
 
24
29
// edspIndex::edspIndex - Constructor                                   /*{{{*/
63
68
class edspIFType: public pkgIndexFile::Type
64
69
{
65
70
   public:
66
 
   virtual pkgRecords::Parser *CreatePkgParser(pkgCache::PkgFileIterator File) const
 
71
   virtual pkgRecords::Parser *CreatePkgParser(pkgCache::PkgFileIterator) const
67
72
   {
68
73
      // we don't have a record parser for this type as the file is not presistent
69
74
      return NULL;