2011-03-28 22:14:09 +00:00
|
|
|
/** \ingroup core
|
|
|
|
* A class to describe the version of a project.
|
|
|
|
* Used in places where you need to check if the current version
|
|
|
|
* of QGIS is greater than the one used to create a project file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class QgsProjectVersion
|
|
|
|
{
|
|
|
|
%TypeHeaderCode
|
|
|
|
#include "qgsprojectversion.h"
|
|
|
|
%End
|
|
|
|
|
2012-09-24 02:28:15 +02:00
|
|
|
public:
|
2011-03-28 22:14:09 +00:00
|
|
|
|
|
|
|
QgsProjectVersion();
|
|
|
|
~QgsProjectVersion();
|
2015-10-07 11:55:34 +11:00
|
|
|
QgsProjectVersion( int major, int minor, int sub, const QString& name = "" );
|
|
|
|
QgsProjectVersion( const QString& string );
|
2011-03-28 22:14:09 +00:00
|
|
|
int majorVersion();
|
|
|
|
int minorVersion();
|
|
|
|
int subVersion();
|
|
|
|
QString text();
|
|
|
|
|
2015-07-29 11:52:14 +02:00
|
|
|
/** Boolean equal operator
|
2016-02-14 03:50:23 +01:00
|
|
|
*/
|
2015-10-27 14:51:52 +11:00
|
|
|
bool operator==( const QgsProjectVersion &other ) const;
|
2011-03-28 22:14:09 +00:00
|
|
|
|
2015-07-29 11:52:14 +02:00
|
|
|
/** Boolean >= operator
|
2016-02-14 03:50:23 +01:00
|
|
|
*/
|
2015-10-27 14:51:52 +11:00
|
|
|
bool operator>=( const QgsProjectVersion &other ) const;
|
2011-03-28 22:14:09 +00:00
|
|
|
|
2015-07-29 11:52:14 +02:00
|
|
|
/** Boolean > operator
|
2016-02-14 03:50:23 +01:00
|
|
|
*/
|
2015-10-27 14:51:52 +11:00
|
|
|
bool operator>( const QgsProjectVersion &other ) const;
|
2011-03-28 22:14:09 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|