From b75404ea1772c13e016d995ad396609aebd40945 Mon Sep 17 00:00:00 2001 From: LoRd_MuldeR Date: Fri, 6 Jan 2017 23:18:36 +0100 Subject: [PATCH] Regenerated documents. --- docs/d0/dd7/_version_8h_source.html | 2 +- docs/d1/d08/class_m_utils_1_1_job_object-members.html | 9 +++++---- docs/d1/d0a/_taskbar7_8h_source.html | 2 +- docs/d1/d93/_i_p_c_channel_8h_source.html | 2 +- docs/d2/d13/_startup_8h_source.html | 2 +- docs/d2/dad/_hash_8h_source.html | 2 +- docs/d2/db5/_c_p_u_features_8h_source.html | 2 +- docs/d3/d5c/_registry_8h_source.html | 2 +- docs/d3/da6/namespace_m_utils.html | 3 --- docs/d3/dc1/_o_s_support_8h_source.html | 4 ++-- docs/d3/dd5/_error_handler_8h_source.html | 2 +- docs/d4/d85/_job_object_8h_source.html | 5 +++-- docs/d5/d3b/_global_8h_source.html | 2 +- docs/d5/db0/_sound_8h_source.html | 2 +- docs/d6/d83/_update_checker_8h_source.html | 2 +- docs/d6/ddd/_terminal_8h_source.html | 2 +- docs/d7/d73/_translation_8h_source.html | 2 +- docs/da/d5d/_g_u_i_8h_source.html | 2 +- docs/dc/dd3/class_m_utils_1_1_job_object.html | 15 +++++++++------ docs/df/d98/_exception_8h_source.html | 2 +- docs/index.html | 2 +- 21 files changed, 35 insertions(+), 33 deletions(-) diff --git a/docs/d0/dd7/_version_8h_source.html b/docs/d0/dd7/_version_8h_source.html index cb2d367..2a0a011 100644 --- a/docs/d0/dd7/_version_8h_source.html +++ b/docs/d0/dd7/_version_8h_source.html @@ -67,7 +67,7 @@ $(function() {
Version.h
-
1 // MuldeR's Utilities for Qt
3 // Copyright (C) 2004-2016 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Lesser General Public
7 // License as published by the Free Software Foundation; either
8 // version 2.1 of the License, or (at your option) any later version.
9 //
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 // Lesser General Public License for more details.
14 //
15 // You should have received a copy of the GNU Lesser General Public
16 // License along with this library; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 //
19 // http://www.gnu.org/licenses/lgpl-2.1.txt
21 
22 #pragma once
23 
24 //MUtils
25 #include <MUtils/Global.h>
26 
27 //Qt
28 #include <QString>
29 #include <QDate>
30 #include <QTime>
31 
32 namespace MUtils
33 {
34  class Version
35  {
36  public:
37  //Get Library Version Numbers
38  MUTILS_API static const quint32 &lib_version_major(void);
39  MUTILS_API static const quint32 &lib_version_minor(void);
40 
41  //Get Library Build Date/Time
42  MUTILS_API static const QDate lib_build_date(void);
43  MUTILS_API static const QTime lib_build_time(void);
44 
45  //Get Application Build Date/Time
46  MUTILS_API static const QDate app_build_date(const char *const date_str = build_date_raw());
47  MUTILS_API static const QTime app_build_time(const char *const time_str = build_time_raw());
48 
49  //Compiler detection
50  static const char *const compiler_version(void)
51  {
52  #if defined(__INTEL_COMPILER)
53  #if (__INTEL_COMPILER >= 1500)
54  static const char *const COMPILER_VERS = "ICL 15." MUTILS_MAKE_STRING(__INTEL_COMPILER_BUILD_DATE);
55  #elif (__INTEL_COMPILER >= 1400)
56  static const char *const COMPILER_VERS = "ICL 14." MUTILS_MAKE_STRING(__INTEL_COMPILER_BUILD_DATE);
57  #elif (__INTEL_COMPILER >= 1300)
58  static const char *const COMPILER_VERS = "ICL 13." MUTILS_MAKE_STRING(__INTEL_COMPILER_BUILD_DATE);
59  #elif (__INTEL_COMPILER >= 1200)
60  static const char *const COMPILER_VERS = "ICL 12." MUTILS_MAKE_STRING(__INTEL_COMPILER_BUILD_DATE);
61  #elif (__INTEL_COMPILER >= 1100)
62  static const char *const COMPILER_VERS = "ICL 11.x";
63  #elif (__INTEL_COMPILER >= 1000)
64  static const char *const COMPILER_VERS = "ICL 10.x";
65  #else
66  #error Compiler is not supported!
67  #endif
68  #elif defined(_MSC_VER)
69  #if (_MSC_VER == 1900)
70  #if (_MSC_FULL_VER == 190023026)
71  static const char *const COMPILER_VERS = "MSVC 2015";
72  #elif (_MSC_FULL_VER == 190023506)
73  static const char *const COMPILER_VERS = "MSVC 2015.1";
74  #elif (_MSC_FULL_VER == 190023918)
75  static const char *const COMPILER_VERS = "MSVC 2015.2";
76  #elif (_MSC_FULL_VER == 190024210) || (_MSC_FULL_VER == 190024215)
77  static const char *const COMPILER_VERS = "MSVC 2015.3";
78  #else
79  #error Compiler version is not supported yet!
80  #endif
81  #elif (_MSC_VER == 1800)
82  #if (_MSC_FULL_VER == 180021005)
83  static const char *const COMPILER_VERS = "MSVC 2013";
84  #elif (_MSC_FULL_VER == 180030501)
85  static const char *const COMPILER_VERS = "MSVC 2013.2";
86  #elif (_MSC_FULL_VER == 180030723)
87  static const char *const COMPILER_VERS = "MSVC 2013.3";
88  #elif (_MSC_FULL_VER == 180031101)
89  static const char *const COMPILER_VERS = "MSVC 2013.4";
90  #elif (_MSC_FULL_VER == 180040629)
91  static const char *const COMPILER_VERS = "MSVC 2013.5";
92  #else
93  #error Compiler version is not supported yet!
94  #endif
95  #elif (_MSC_VER == 1700)
96  #if (_MSC_FULL_VER == 170050727)
97  static const char *const COMPILER_VERS = "MSVC 2012";
98  #elif (_MSC_FULL_VER == 170051106)
99  static const char *const COMPILER_VERS = "MSVC 2012.1";
100  #elif (_MSC_FULL_VER == 170060315)
101  static const char *const COMPILER_VERS = "MSVC 2012.2";
102  #elif (_MSC_FULL_VER == 170060610)
103  static const char *const COMPILER_VERS = "MSVC 2012.3";
104  #elif (_MSC_FULL_VER == 170061030)
105  static const char *const COMPILER_VERS = "MSVC 2012.4";
106  #else
107  #error Compiler version is not supported yet!
108  #endif
109  #elif (_MSC_VER == 1600)
110  #if (_MSC_FULL_VER >= 160040219)
111  static const char *const COMPILER_VERS = "MSVC 2010-SP1";
112  #else
113  static const char *const COMPILER_VERS = "MSVC 2010";
114  #endif
115  #elif (_MSC_VER == 1500)
116  #if (_MSC_FULL_VER >= 150030729)
117  static const char *const COMPILER_VERS = "MSVC 2008-SP1";
118  #else
119  static const char *const COMPILER_VERS = "MSVC 2008";
120  #endif
121  #else
122  #error Compiler is not supported!
123  #endif
124  #else
125  #error Compiler is not supported!
126  #endif
127 
128  return COMPILER_VERS;
129  }
130 
131  //Architecture detection
132  static const char *const compiler_arch(void)
133  {
134  #if defined(_M_X64)
135  static const char *const COMPILER_ARCH = "x64";
136  #elif defined(_M_IX86)
137  static const char *const COMPILER_ARCH = "x86";
138  #else
139  #error Architecture is not supported!
140  #endif
141 
142  return COMPILER_ARCH;
143  }
144 
145  private:
146  //Raw Build date
147  static const char *const build_date_raw(void)
148  {
149  static const char *const RAW_BUILD_DATE = __DATE__;
150  return RAW_BUILD_DATE;
151  }
152 
153  //Raw Build time
154  static const char *const build_time_raw(void)
155  {
156  static const char *const RAW_BUILD_TIME = __TIME__;
157  return RAW_BUILD_TIME;
158  }
159 
160  //Disable construction
161  Version(void) { throw 666; }
162  Version(const Version&) { throw 666; }
163  };
164 }
165 
Definition: Version.h:34
+
1 // MuldeR's Utilities for Qt
3 // Copyright (C) 2004-2017 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Lesser General Public
7 // License as published by the Free Software Foundation; either
8 // version 2.1 of the License, or (at your option) any later version.
9 //
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 // Lesser General Public License for more details.
14 //
15 // You should have received a copy of the GNU Lesser General Public
16 // License along with this library; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 //
19 // http://www.gnu.org/licenses/lgpl-2.1.txt
21 
22 #pragma once
23 
24 //MUtils
25 #include <MUtils/Global.h>
26 
27 //Qt
28 #include <QString>
29 #include <QDate>
30 #include <QTime>
31 
32 namespace MUtils
33 {
34  class Version
35  {
36  public:
37  //Get Library Version Numbers
38  MUTILS_API static const quint32 &lib_version_major(void);
39  MUTILS_API static const quint32 &lib_version_minor(void);
40 
41  //Get Library Build Date/Time
42  MUTILS_API static const QDate lib_build_date(void);
43  MUTILS_API static const QTime lib_build_time(void);
44 
45  //Get Application Build Date/Time
46  MUTILS_API static const QDate app_build_date(const char *const date_str = build_date_raw());
47  MUTILS_API static const QTime app_build_time(const char *const time_str = build_time_raw());
48 
49  //Compiler detection
50  static const char *const compiler_version(void)
51  {
52  #if defined(__INTEL_COMPILER)
53  #if (__INTEL_COMPILER >= 1500)
54  static const char *const COMPILER_VERS = "ICL 15." MUTILS_MAKE_STRING(__INTEL_COMPILER_BUILD_DATE);
55  #elif (__INTEL_COMPILER >= 1400)
56  static const char *const COMPILER_VERS = "ICL 14." MUTILS_MAKE_STRING(__INTEL_COMPILER_BUILD_DATE);
57  #elif (__INTEL_COMPILER >= 1300)
58  static const char *const COMPILER_VERS = "ICL 13." MUTILS_MAKE_STRING(__INTEL_COMPILER_BUILD_DATE);
59  #elif (__INTEL_COMPILER >= 1200)
60  static const char *const COMPILER_VERS = "ICL 12." MUTILS_MAKE_STRING(__INTEL_COMPILER_BUILD_DATE);
61  #elif (__INTEL_COMPILER >= 1100)
62  static const char *const COMPILER_VERS = "ICL 11.x";
63  #elif (__INTEL_COMPILER >= 1000)
64  static const char *const COMPILER_VERS = "ICL 10.x";
65  #else
66  #error Compiler is not supported!
67  #endif
68  #elif defined(_MSC_VER)
69  #if (_MSC_VER == 1900)
70  #if (_MSC_FULL_VER == 190023026)
71  static const char *const COMPILER_VERS = "MSVC 2015";
72  #elif (_MSC_FULL_VER == 190023506)
73  static const char *const COMPILER_VERS = "MSVC 2015.1";
74  #elif (_MSC_FULL_VER == 190023918)
75  static const char *const COMPILER_VERS = "MSVC 2015.2";
76  #elif (_MSC_FULL_VER == 190024210) || (_MSC_FULL_VER == 190024215)
77  static const char *const COMPILER_VERS = "MSVC 2015.3";
78  #else
79  #error Compiler version is not supported yet!
80  #endif
81  #elif (_MSC_VER == 1800)
82  #if (_MSC_FULL_VER == 180021005)
83  static const char *const COMPILER_VERS = "MSVC 2013";
84  #elif (_MSC_FULL_VER == 180030501)
85  static const char *const COMPILER_VERS = "MSVC 2013.2";
86  #elif (_MSC_FULL_VER == 180030723)
87  static const char *const COMPILER_VERS = "MSVC 2013.3";
88  #elif (_MSC_FULL_VER == 180031101)
89  static const char *const COMPILER_VERS = "MSVC 2013.4";
90  #elif (_MSC_FULL_VER == 180040629)
91  static const char *const COMPILER_VERS = "MSVC 2013.5";
92  #else
93  #error Compiler version is not supported yet!
94  #endif
95  #elif (_MSC_VER == 1700)
96  #if (_MSC_FULL_VER == 170050727)
97  static const char *const COMPILER_VERS = "MSVC 2012";
98  #elif (_MSC_FULL_VER == 170051106)
99  static const char *const COMPILER_VERS = "MSVC 2012.1";
100  #elif (_MSC_FULL_VER == 170060315)
101  static const char *const COMPILER_VERS = "MSVC 2012.2";
102  #elif (_MSC_FULL_VER == 170060610)
103  static const char *const COMPILER_VERS = "MSVC 2012.3";
104  #elif (_MSC_FULL_VER == 170061030)
105  static const char *const COMPILER_VERS = "MSVC 2012.4";
106  #else
107  #error Compiler version is not supported yet!
108  #endif
109  #elif (_MSC_VER == 1600)
110  #if (_MSC_FULL_VER >= 160040219)
111  static const char *const COMPILER_VERS = "MSVC 2010-SP1";
112  #else
113  static const char *const COMPILER_VERS = "MSVC 2010";
114  #endif
115  #elif (_MSC_VER == 1500)
116  #if (_MSC_FULL_VER >= 150030729)
117  static const char *const COMPILER_VERS = "MSVC 2008-SP1";
118  #else
119  static const char *const COMPILER_VERS = "MSVC 2008";
120  #endif
121  #else
122  #error Compiler is not supported!
123  #endif
124  #else
125  #error Compiler is not supported!
126  #endif
127 
128  return COMPILER_VERS;
129  }
130 
131  //Architecture detection
132  static const char *const compiler_arch(void)
133  {
134  #if defined(_M_X64)
135  static const char *const COMPILER_ARCH = "x64";
136  #elif defined(_M_IX86)
137  static const char *const COMPILER_ARCH = "x86";
138  #else
139  #error Architecture is not supported!
140  #endif
141 
142  return COMPILER_ARCH;
143  }
144 
145  private:
146  //Raw Build date
147  static const char *const build_date_raw(void)
148  {
149  static const char *const RAW_BUILD_DATE = __DATE__;
150  return RAW_BUILD_DATE;
151  }
152 
153  //Raw Build time
154  static const char *const build_time_raw(void)
155  {
156  static const char *const RAW_BUILD_TIME = __TIME__;
157  return RAW_BUILD_TIME;
158  }
159 
160  //Disable construction
161  Version(void) { throw 666; }
162  Version(const Version&) { throw 666; }
163  };
164 }
165 
Definition: Version.h:34
This file contains miscellaneous functions that are generally useful for Qt-based applications...
Global MUtils namespace.
Definition: CPUFeatures.h:37
diff --git a/docs/d1/d08/class_m_utils_1_1_job_object-members.html b/docs/d1/d08/class_m_utils_1_1_job_object-members.html index dcd35c3..ee3bfe0 100644 --- a/docs/d1/d08/class_m_utils_1_1_job_object-members.html +++ b/docs/d1/d08/class_m_utils_1_1_job_object-members.html @@ -70,10 +70,11 @@ $(function() {

This is the complete list of members for MUtils::JobObject, including all inherited members.

- - - - + + + + +
addProcessToJob(const QProcess *proc) (defined in MUtils::JobObject)MUtils::JobObject
JobObject(void) (defined in MUtils::JobObject)MUtils::JobObject
terminateJob(unsigned int exitCode) (defined in MUtils::JobObject)MUtils::JobObject
~JobObject(void) (defined in MUtils::JobObject)MUtils::JobObject
addProcessToJob(const QProcess *const process) (defined in MUtils::JobObject)MUtils::JobObject
isObjectCreated(void) (defined in MUtils::JobObject)MUtils::JobObject
JobObject(void) (defined in MUtils::JobObject)MUtils::JobObject
terminateJob(const quint32 &exitCode) (defined in MUtils::JobObject)MUtils::JobObject
~JobObject(void) (defined in MUtils::JobObject)MUtils::JobObject