Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/mpc-hc/VersionInfo.h')
-rw-r--r--src/mpc-hc/VersionInfo.h28
1 files changed, 13 insertions, 15 deletions
diff --git a/src/mpc-hc/VersionInfo.h b/src/mpc-hc/VersionInfo.h
index 0e854bdfc..116cb7491 100644
--- a/src/mpc-hc/VersionInfo.h
+++ b/src/mpc-hc/VersionInfo.h
@@ -1,5 +1,5 @@
/*
- * (C) 2013 see Authors.txt
+ * (C) 2013, 2015 see Authors.txt
*
* This file is part of MPC-HC.
*
@@ -20,19 +20,17 @@
#pragma once
-class VersionInfo
+namespace VersionInfo
{
-public:
- static bool IsNightly();
- static CString GetNightlyWord();
- static bool Is64Bit();
- static CString GetVersionString();
- static CString GetFullVersionString();
- static CString GetBuildDateString();
- static unsigned GetMajorNumber();
- static unsigned GetMinorNumber();
- static unsigned GetPatchNumber();
- static unsigned GetRevisionNumber();
-private:
- VersionInfo();
+ bool IsNightly();
+ CString GetNightlyWord();
+ bool Is64Bit();
+ CString GetVersionString();
+ CString GetFullVersionString();
+ CString GetBuildDateString();
+ unsigned GetMajorNumber();
+ unsigned GetMinorNumber();
+ unsigned GetPatchNumber();
+ unsigned GetRevisionNumber();
+ CString GetGCCVersion();
};