edspindexfile.h 908 B

123456789101112131415161718192021222324252627282930313233343536
  1. // -*- mode: cpp; mode: fold -*-
  2. // Description /*{{{*/
  3. /* ######################################################################
  4. The scenario file is designed to work as an intermediate file between
  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. #include <apt-pkg/debindexfile.h>
  11. #include <string>
  12. #ifndef APT_8_CLEANER_HEADERS
  13. #include <apt-pkg/indexfile.h>
  14. #endif
  15. class OpProgress;
  16. class pkgCacheGenerator;
  17. class edspIndex : public debStatusIndex
  18. {
  19. /** \brief dpointer placeholder (for later in case we need it) */
  20. void *d;
  21. public:
  22. virtual const Type *GetType() const APT_CONST;
  23. virtual bool Merge(pkgCacheGenerator &Gen,OpProgress *Prog) const;
  24. edspIndex(std::string File);
  25. };
  26. #endif