QGIS/python/core/qgsprojectversion.sip

38 lines
864 B
Plaintext
Raw Normal View History

/** \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
public:
QgsProjectVersion();
~QgsProjectVersion();
QgsProjectVersion( int major, int minor, int sub, const QString& name = "" );
QgsProjectVersion( const QString& string );
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;
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;
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;
};