|
@@ -22,6 +22,8 @@
|
|
|
|
|
|
|
|
class debStatusIndex : public pkgIndexFile
|
|
class debStatusIndex : public pkgIndexFile
|
|
|
{
|
|
{
|
|
|
|
|
+ /** \brief dpointer placeholder (for later in case we need it) */
|
|
|
|
|
+ void *d;
|
|
|
string File;
|
|
string File;
|
|
|
|
|
|
|
|
public:
|
|
public:
|
|
@@ -39,10 +41,14 @@ class debStatusIndex : public pkgIndexFile
|
|
|
virtual pkgCache::PkgFileIterator FindInCache(pkgCache &Cache) const;
|
|
virtual pkgCache::PkgFileIterator FindInCache(pkgCache &Cache) const;
|
|
|
|
|
|
|
|
debStatusIndex(string File);
|
|
debStatusIndex(string File);
|
|
|
|
|
+ virtual ~debStatusIndex() {};
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
class debPackagesIndex : public pkgIndexFile
|
|
class debPackagesIndex : public pkgIndexFile
|
|
|
{
|
|
{
|
|
|
|
|
+ /** \brief dpointer placeholder (for later in case we need it) */
|
|
|
|
|
+ void *d;
|
|
|
|
|
+
|
|
|
string URI;
|
|
string URI;
|
|
|
string Dist;
|
|
string Dist;
|
|
|
string Section;
|
|
string Section;
|
|
@@ -72,10 +78,14 @@ class debPackagesIndex : public pkgIndexFile
|
|
|
|
|
|
|
|
debPackagesIndex(string const &URI, string const &Dist, string const &Section,
|
|
debPackagesIndex(string const &URI, string const &Dist, string const &Section,
|
|
|
bool const &Trusted, string const &Arch = "native");
|
|
bool const &Trusted, string const &Arch = "native");
|
|
|
|
|
+ virtual ~debPackagesIndex() {};
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
class debTranslationsIndex : public pkgIndexFile
|
|
class debTranslationsIndex : public pkgIndexFile
|
|
|
{
|
|
{
|
|
|
|
|
+ /** \brief dpointer placeholder (for later in case we need it) */
|
|
|
|
|
+ void *d;
|
|
|
|
|
+
|
|
|
string URI;
|
|
string URI;
|
|
|
string Dist;
|
|
string Dist;
|
|
|
string Section;
|
|
string Section;
|
|
@@ -103,10 +113,14 @@ class debTranslationsIndex : public pkgIndexFile
|
|
|
virtual pkgCache::PkgFileIterator FindInCache(pkgCache &Cache) const;
|
|
virtual pkgCache::PkgFileIterator FindInCache(pkgCache &Cache) const;
|
|
|
|
|
|
|
|
debTranslationsIndex(string URI,string Dist,string Section, char const * const Language);
|
|
debTranslationsIndex(string URI,string Dist,string Section, char const * const Language);
|
|
|
|
|
+ virtual ~debTranslationsIndex() {};
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
class debSourcesIndex : public pkgIndexFile
|
|
class debSourcesIndex : public pkgIndexFile
|
|
|
{
|
|
{
|
|
|
|
|
+ /** \brief dpointer placeholder (for later in case we need it) */
|
|
|
|
|
+ void *d;
|
|
|
|
|
+
|
|
|
string URI;
|
|
string URI;
|
|
|
string Dist;
|
|
string Dist;
|
|
|
string Section;
|
|
string Section;
|
|
@@ -136,6 +150,7 @@ class debSourcesIndex : public pkgIndexFile
|
|
|
virtual unsigned long Size() const;
|
|
virtual unsigned long Size() const;
|
|
|
|
|
|
|
|
debSourcesIndex(string URI,string Dist,string Section,bool Trusted);
|
|
debSourcesIndex(string URI,string Dist,string Section,bool Trusted);
|
|
|
|
|
+ virtual ~debSourcesIndex() {};
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
#endif
|