]> git.saurik.com Git - apt.git/blame - apt-pkg/edsp/edspindexfile.h
make all d-pointer * const pointers
[apt.git] / apt-pkg / edsp / edspindexfile.h
CommitLineData
6d38011b
DK
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
3/* ######################################################################
e0a78caa 4 The scenario file is designed to work as an intermediate file between
6d38011b
DK
5 APT and the resolver. Its on propose very similar to a dpkg status file
6 ##################################################################### */
7 /*}}}*/
8#ifndef PKGLIB_EDSPINDEXFILE_H
9#define PKGLIB_EDSPINDEXFILE_H
10
6d38011b 11#include <apt-pkg/debindexfile.h>
453b82a3 12#include <string>
6d38011b 13
b9dadc24
DK
14#ifndef APT_8_CLEANER_HEADERS
15#include <apt-pkg/indexfile.h>
16#endif
17
453b82a3
DK
18class OpProgress;
19class pkgCacheGenerator;
20
dce45dbe 21class APT_HIDDEN edspIndex : public debStatusIndex
6d38011b 22{
627e99b0 23 /** \brief dpointer placeholder (for later in case we need it) */
6c55f07a 24 void * const d;
627e99b0 25
6d38011b
DK
26 public:
27
a02db58f 28 virtual const Type *GetType() const APT_CONST;
6d38011b
DK
29
30 virtual bool Merge(pkgCacheGenerator &Gen,OpProgress *Prog) const;
31
8f3ba4e8 32 edspIndex(std::string File);
c8a4ce6c 33 virtual ~edspIndex();
6d38011b
DK
34};
35
36#endif