| Server IP : 216.92.14.13 / Your IP : 216.73.216.171 Web Server : Apache System : Linux vps4089.pairvps.com 5.15.0-190-generic #200-Ubuntu SMP Fri Aug 7 15:06:04 UTC 2026 x86_64 User : rmlac2fmr ( 1040637) PHP Version : 8.2.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/include/apt-pkg/ |
Upload File : |
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
/* ######################################################################
Debian Version - Versioning system for Debian
This implements the standard Debian versioning system.
##################################################################### */
/*}}}*/
#ifndef PKGLIB_DEBVERSION_H
#define PKGLIB_DEBVERSION_H
#include <apt-pkg/version.h>
#include <string>
class APT_PUBLIC debVersioningSystem : public pkgVersioningSystem
{
public:
static int CmpFragment(const char *A, const char *AEnd, const char *B,
const char *BEnd) APT_PURE;
// Compare versions..
virtual int DoCmpVersion(const char *A,const char *Aend,
const char *B,const char *Bend) APT_OVERRIDE APT_PURE;
virtual bool CheckDep(const char *PkgVer,int Op,const char *DepVer) APT_OVERRIDE APT_PURE;
virtual APT_PURE int DoCmpReleaseVer(const char *A,const char *Aend,
const char *B,const char *Bend) APT_OVERRIDE
{
return DoCmpVersion(A,Aend,B,Bend);
}
virtual std::string UpstreamVersion(const char *A) APT_OVERRIDE;
debVersioningSystem();
};
extern APT_PUBLIC debVersioningSystem debVS;
#endif