File: debversion.h

package info (click to toggle)
apt 3.1.12
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 22,736 kB
  • sloc: cpp: 71,048; sh: 31,750; xml: 5,553; perl: 217; python: 197; ansic: 191; makefile: 41
file content (41 lines) | stat: -rw-r--r-- 1,165 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// -*- 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..
   int DoCmpVersion(const char *A, const char *Aend,
		    const char *B, const char *Bend) override APT_PURE;
   bool CheckDep(const char *PkgVer, int Op, const char *DepVer) override APT_PURE;
   int DoCmpReleaseVer(const char *A, const char *Aend,
		       const char *B, const char *Bend) override APT_PURE
   {
      return DoCmpVersion(A,Aend,B,Bend);
   }
   std::string UpstreamVersion(const char *A) override;

   debVersioningSystem();
};

extern APT_PUBLIC debVersioningSystem debVS;

#endif