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
|
/* Copyright (C) 2011 Ion Torrent Systems, Inc. All Rights Reserved */
#include "IonVersion.h"
using namespace std;
string IonVersion::GetMajor() {return "5";}
string IonVersion::GetMinor() {return "0";}
string IonVersion::GetRelease() {return "3";}
string IonVersion::GetGitHash() {return "e975447-9fa85fb";}
string IonVersion::GetGitPath() {return "";}
string IonVersion::GetBuildNum() {return "";}
string IonVersion::GetBuildTag() {return "";}
string IonVersion::GetBuildHost() {return "";}
string IonVersion::GetFullVersion(std::string module)
{
string v = module;
v += " (";
v += "5";
v += ".";
v += "0";
v += ".";
v += "3";
v += ")\n";
v += "Build: ";
v += "";
v += " (";
v += "";
v += ")\nSource: ";
v += "";
v += " (";
v += "e975447-9fa85fb";
v += ")\n";
return v;
}
string IonVersion::GetVersion()
{
string v = "5";
v += ".";
v += "0";
return (v);
}
|