1 #ifndef ORIGEN_UTILS_VERSION_INCLUDED
2 #define ORIGEN_UTILS_VERSION_INCLUDED
6 #if (defined(__GNUC__) || defined(__GNUG__)) && \
7 !(defined(__clang__) || defined(__INTEL_COMPILER))
10 #if (__GNUC_MINOR__ > 1)
42 vector<int> parse(
string ver);
52 bool operator==(
string rhs);
53 bool operator!=(
string rhs);
54 bool operator<(
string rhs);
55 bool operator<=(
string rhs);
56 bool operator>(
string rhs);
57 bool operator>=(
string rhs);
Definition: version.hpp:40