Lines Matching defs:Version
18 class Version {
21 Version() : _major(0), _minor(0) {}
24 Version(unsigned mj, unsigned mn) : _major(mj), _minor(mn) {}
26 bool operator>(Version const &other) const {
31 bool operator==(Version const &other) const {
35 bool operator!=(Version const &other) const {
39 bool operator<(Version const &other) const {
50 bool sp_version_from_string(const char *string, Inkscape::Version *version);
52 char *sp_version_to_string(Inkscape::Version version);
54 bool sp_version_inside_range(Inkscape::Version version,