Searched defs:_minor (Results 1 - 1 of 1) sorted by relevance

/inkscape/src/
H A Dversion.h21 Version() : _major(0), _minor(0) {}
24 Version(unsigned mj, unsigned mn) : _major(mj), _minor(mn) {}
28 ( _major == other._major && _minor > other._minor );
32 return _major == other._major && _minor == other._minor;
36 return _major != other._major || _minor != other._minor;
41 ( _major == other._major && _minor < other._minor );
45 unsigned int _minor; member in class:Inkscape::Version
[all...]

Completed in 14 milliseconds