blob: ecf10b10983474d9989fd93f9a423d6792bb022a (
plain)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Authors:
* MenTaLguY <mental@rydia.net>
* Jon A. Cruz <jon@joncruz.org>
*
* Copyright (C) 2003 MenTaLguY
*
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#ifndef SEEN_INKSCAPE_VERSION_H
#define SEEN_INKSCAPE_VERSION_H
#define SVG_VERSION "1.1"
#include <string>
namespace Inkscape {
class Version {
public:
Version() : _major(0), _minor(0) {}
// Note: somebody pollutes our namespace with major() and minor()
Version(unsigned mj, unsigned mn) : _major(mj), _minor(mn) {}
bool operator>(Version const &other) const {
return _major > other._major ||
( _major == other._major && _minor > other._minor );
}
bool operator==(Version const &other) const {
return _major == other._major && _minor == other._minor;
}
bool operator!=(Version const &other) const {
return _major != other._major || _minor != other._minor;
}
bool operator<(Version const &other) const {
return _major < other._major ||
( _major == other._major && _minor < other._minor );
}
unsigned int _major;
unsigned int _minor;
std::string _tail; // Development version
};
}
bool sp_version_from_string(const char *string, Inkscape::Version *version);
char *sp_version_to_string(Inkscape::Version version);
bool sp_version_inside_range(Inkscape::Version version,
unsigned major_min, unsigned minor_min,
unsigned major_max, unsigned minor_max);
#endif // SEEN_INKSCAPE_VERSION_H
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0))
indent-tabs-mode:nil
fill-column:75
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :
|