Equalizer  2.1.0
Parallel Rendering Framework
seq/version.h File Reference

Defines version macros and class for library Sequel. More...

#include <seq/api.h>
#include <string>
+ Include dependency graph for seq/version.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  seq::Version
 Information about the current Sequel version. More...
 

Namespaces

 seq
 Sequel - A simple interface to the Equalizer parallel rendering framework.
 

Macros

#define SEQ_VERSION_MAJOR   2
 The current major version. More...
 
#define SEQ_VERSION_MINOR   1
 The current minor version. More...
 
#define SEQ_VERSION_PATCH   0
 The current patch level. More...
 
#define SEQ_VERSION_REVISION   0x3962d38
 The current SCM revision. More...
 
#define SEQ_VERSION_ABI   210ull
 The current binary interface. More...
 
#define SEQ_VERSION_STRING   "2.1.0"
 The current major.minor.version as a string. More...
 
#define SEQ_REV_STRING   "2.1.0.0x3962d38"
 The current major.minor.version.revision as a string. More...
 
#define SEQ_VERSION_GT(MAJOR, MINOR, PATCH)
 True if the current version is newer than the given one. More...
 
#define SEQ_VERSION_GE(MAJOR, MINOR, PATCH)
 True if the current version is equal or newer to the given. More...
 
#define SEQ_VERSION_LT(MAJOR, MINOR, PATCH)
 True if the current version is older than the given one. More...
 
#define SEQ_VERSION_LE(MAJOR, MINOR, PATCH)
 True if the current version is older or equal to the given. More...
 

Detailed Description

Defines version macros and class for library Sequel.

Definition in file seq/version.h.

Macro Definition Documentation

#define SEQ_REV_STRING   "2.1.0.0x3962d38"

The current major.minor.version.revision as a string.

Definition at line 36 of file seq/version.h.

#define SEQ_VERSION_ABI   210ull

The current binary interface.

Definition at line 29 of file seq/version.h.

#define SEQ_VERSION_GE (   MAJOR,
  MINOR,
  PATCH 
)
Value:
( (SEQ_VERSION_MAJOR>MAJOR) || \
(SEQ_VERSION_MAJOR==MAJOR && (SEQ_VERSION_MINOR>MINOR || \
(SEQ_VERSION_MINOR==MINOR && SEQ_VERSION_PATCH>=PATCH))))
#define SEQ_VERSION_MAJOR
The current major version.
Definition: seq/version.h:17
#define SEQ_VERSION_PATCH
The current patch level.
Definition: seq/version.h:23
#define SEQ_VERSION_MINOR
The current minor version.
Definition: seq/version.h:20

True if the current version is equal or newer to the given.

Definition at line 46 of file seq/version.h.

#define SEQ_VERSION_GT (   MAJOR,
  MINOR,
  PATCH 
)
Value:
( (SEQ_VERSION_MAJOR>MAJOR) || \
(SEQ_VERSION_MAJOR==MAJOR && (SEQ_VERSION_MINOR>MINOR || \
(SEQ_VERSION_MINOR==MINOR && SEQ_VERSION_PATCH>PATCH))))
#define SEQ_VERSION_MAJOR
The current major version.
Definition: seq/version.h:17
#define SEQ_VERSION_PATCH
The current patch level.
Definition: seq/version.h:23
#define SEQ_VERSION_MINOR
The current minor version.
Definition: seq/version.h:20

True if the current version is newer than the given one.

Definition at line 40 of file seq/version.h.

#define SEQ_VERSION_LE (   MAJOR,
  MINOR,
  PATCH 
)
Value:
( (SEQ_VERSION_MAJOR<MAJOR) || \
(SEQ_VERSION_MAJOR==MAJOR && (SEQ_VERSION_MINOR<MINOR || \
(SEQ_VERSION_MINOR==MINOR && SEQ_VERSION_PATCH<=PATCH))))
#define SEQ_VERSION_MAJOR
The current major version.
Definition: seq/version.h:17
#define SEQ_VERSION_PATCH
The current patch level.
Definition: seq/version.h:23
#define SEQ_VERSION_MINOR
The current minor version.
Definition: seq/version.h:20

True if the current version is older or equal to the given.

Definition at line 58 of file seq/version.h.

#define SEQ_VERSION_LT (   MAJOR,
  MINOR,
  PATCH 
)
Value:
( (SEQ_VERSION_MAJOR<MAJOR) || \
(SEQ_VERSION_MAJOR==MAJOR && (SEQ_VERSION_MINOR<MINOR || \
(SEQ_VERSION_MINOR==MINOR && SEQ_VERSION_PATCH<PATCH))))
#define SEQ_VERSION_MAJOR
The current major version.
Definition: seq/version.h:17
#define SEQ_VERSION_PATCH
The current patch level.
Definition: seq/version.h:23
#define SEQ_VERSION_MINOR
The current minor version.
Definition: seq/version.h:20

True if the current version is older than the given one.

Definition at line 52 of file seq/version.h.

#define SEQ_VERSION_MAJOR   2

The current major version.

Definition at line 17 of file seq/version.h.

Referenced by seq::Version::check().

#define SEQ_VERSION_MINOR   1

The current minor version.

Definition at line 20 of file seq/version.h.

Referenced by seq::Version::check().

#define SEQ_VERSION_PATCH   0

The current patch level.

Definition at line 23 of file seq/version.h.

#define SEQ_VERSION_REVISION   0x3962d38

The current SCM revision.

Definition at line 26 of file seq/version.h.

#define SEQ_VERSION_STRING   "2.1.0"

The current major.minor.version as a string.

Definition at line 32 of file seq/version.h.