add the methods we will need to write to make working with EDSP possible
[ntk/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
11#include <apt-pkg/indexfile.h>
12#include <apt-pkg/debindexfile.h>
13
14class edspIndex : public debStatusIndex
15{
16 public:
17
18 virtual const Type *GetType() const;
19
20 virtual bool Merge(pkgCacheGenerator &Gen,OpProgress *Prog) const;
21
22 edspIndex(string File);
23};
24
25#endif