Add copy constructor for version class.

This commit is contained in:
Andrew 2013-01-31 16:54:06 -06:00
parent 2d05e90196
commit ffe49e9c1a
2 changed files with 11 additions and 1 deletions

View File

@ -17,7 +17,7 @@
#include "config.h"
Version Version::current = Version(VERSION_MAJOR, VERSION_MINOR, VERSION_REVISION, VERSION_BUILD);
Version Version::current(VERSION_MAJOR, VERSION_MINOR, VERSION_REVISION, VERSION_BUILD);
Version::Version(int major, int minor, int revision, int build, QObject *parent) :
QObject(parent)
@ -28,6 +28,14 @@ Version::Version(int major, int minor, int revision, int build, QObject *parent)
this->build = build;
}
Version::Version(const Version& ver)
{
this->major = ver.major;
this->minor = ver.minor;
this->revision = ver.revision;
this->build = ver.build;
}
QString Version::toString() const
{
return QString("%1.%2.%3.%4").arg(

View File

@ -25,6 +25,8 @@ public:
explicit Version(int major = 0, int minor = 0, int revision = 0,
int build = 0, QObject *parent = 0);
Version(const Version& ver);
QString toString() const;
int major;