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

@@ -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;