File: IonVersion.cpp.in

package info (click to toggle)
tvc 5.0.3%2Bgit20151221.80e144e%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 3,596 kB
  • sloc: cpp: 24,088; ansic: 3,933; python: 260; sh: 23; makefile: 16
file content (46 lines) | stat: -rw-r--r-- 907 bytes parent folder | download | duplicates (3)
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);
}