JKQtPlotter/lib/jkqtcommon
jkriege2 52d3349199 improvements in CMake setup:
- removed more global settings (these are now target-specific)
- exporting now Config.cmake, which contains find_package(Qt) and loads a separate Targets.cmake
2020-06-28 15:53:26 +02:00
..
CMakeLists.txt improvements in CMake setup: 2020-06-28 15:53:26 +02:00
jkqtcommon_imexport.h + bugfixed DLL-export when building shared libraries 2019-06-22 14:21:32 +02:00
jkqtpalgorithms.cpp Split of jkqtcommon/jkqtptools.h into several smaller units 2019-05-23 07:38:07 +02:00
jkqtpalgorithms.h + bugfixed DLL-export when building shared libraries 2019-06-22 14:21:32 +02:00
jkqtparraytools.cpp new: Statistics library with functions to calculate histograms, regression, kernel density estimates, ... including a new example 2019-05-29 22:40:02 +02:00
jkqtparraytools.h fix issue #19: got rid of jkqtpArrayMalloc(), jkqtpArrayCalloc(), jkqtpArrayFree() (which were a remenant of QuickFit 3 and not really portable or useful) 2019-11-18 16:15:49 +01:00
jkqtpbasicimagetools.cpp bugfix for https://github.com/jkriege2/JKQtPlotter/issues/38: BUFFER Overflow due to access behind LUT-size 2020-01-06 18:17:41 +01:00
jkqtpbasicimagetools.h Minor documentation clarifications 2019-09-16 18:05:40 +01:00
jkqtpcodestructuring.cpp new: Statistics library with functions to calculate histograms, regression, kernel density estimates, ... including a new example 2019-05-29 22:40:02 +02:00
jkqtpcodestructuring.h new: Statistics library with functions to calculate histograms, regression, kernel density estimates, ... including a new example 2019-05-29 22:40:02 +02:00
jkqtpdebuggingtools.cpp - removed many compiler warnings 2019-06-21 21:48:14 +02:00
jkqtpdebuggingtools.h + bugfixed DLL-export when building shared libraries 2019-06-22 14:21:32 +02:00
jkqtpdrawingtools.cpp fixed several compiler warnings (mostly Visual Studio): clean-up of use of math constants M_PI ... and j0()/j1()/...-functions etc. 2019-11-24 10:42:44 +01:00
jkqtpdrawingtools.h fixed several compiler warnings (mostly Visual Studio): clean-up of use of math constants M_PI ... and j0()/j1()/...-functions etc. 2019-11-24 10:42:44 +01:00
jkqtpenhancedpainter.cpp - removed many compiler warnings 2019-06-21 21:48:14 +02:00
jkqtpenhancedpainter.h + bugfixed DLL-export when building shared libraries 2019-06-22 14:21:32 +02:00
jkqtphighrestimer.cpp JKQTPHighResTimer now uses C++11 chrono lib as fallback 2019-11-24 12:21:06 +01:00
jkqtphighrestimer.h fixed typo which leads to Linux build fails! 2019-11-24 13:05:57 +01:00
jkqtplinalgtools.cpp new: Statistics library with functions to calculate histograms, regression, kernel density estimates, ... including a new example 2019-05-29 22:40:02 +02:00
jkqtplinalgtools.h fix issue #19: got rid of jkqtpArrayMalloc(), jkqtpArrayCalloc(), jkqtpArrayFree() (which were a remenant of QuickFit 3 and not really portable or useful) 2019-11-18 16:15:49 +01:00
jkqtpmathparser.cpp bugfix: removed some unneeded functions in mathparser 2019-11-24 10:52:24 +01:00
jkqtpmathparser.h fixed several compiler warnings (mostly Visual Studio): clean-up of use of math constants M_PI ... and j0()/j1()/...-functions etc. 2019-11-24 10:42:44 +01:00
jkqtpmathtools.cpp new: Statistics library with functions to calculate histograms, regression, kernel density estimates, ... including a new example 2019-05-29 22:40:02 +02:00
jkqtpmathtools.h fixed several compiler warnings (mostly Visual Studio): clean-up of use of math constants M_PI ... and j0()/j1()/...-functions etc. 2019-11-24 10:42:44 +01:00
jkqtpstatbasics.cpp split statistics library by topic into several .H/.CPP-pairs 2019-06-12 12:58:47 +02:00
jkqtpstatbasics.h + bugfixed DLL-export when building shared libraries 2019-06-22 14:21:32 +02:00
jkqtpstatgrouped.cpp statistics library: added functions for grouped statistics and adaptors for them 2019-06-13 10:29:12 +02:00
jkqtpstatgrouped.h + bugfixed DLL-export when building shared libraries 2019-06-22 14:21:32 +02:00
jkqtpstathistogram.cpp split statistics library by topic into several .H/.CPP-pairs 2019-06-12 12:58:47 +02:00
jkqtpstathistogram.h several compiler warnings fixed 2019-11-24 12:20:43 +01:00
jkqtpstatisticstools.h statistics library: added functions for grouped statistics and adaptors for them 2019-06-13 10:29:12 +02:00
jkqtpstatkde.cpp fixed several compiler warnings (mostly Visual Studio): clean-up of use of math constants M_PI ... and j0()/j1()/...-functions etc. 2019-11-24 10:42:44 +01:00
jkqtpstatkde.h + bugfixed DLL-export when building shared libraries 2019-06-22 14:21:32 +02:00
jkqtpstatpoly.cpp split statistics library by topic into several .H/.CPP-pairs 2019-06-12 12:58:47 +02:00
jkqtpstatpoly.h + bugfixed DLL-export when building shared libraries 2019-06-22 14:21:32 +02:00
jkqtpstatregression.cpp split statistics library by topic into several .H/.CPP-pairs 2019-06-12 12:58:47 +02:00
jkqtpstatregression.h + bugfixed DLL-export when building shared libraries 2019-06-22 14:21:32 +02:00
jkqtpstringtools.cpp Fixed Bug #43: jkqtp_format() had undefined behaviour, because va_start was called with a ref-parameter, which does not work. Now there are 4 overloaded template variants. See https://github.com/jkriege2/JKQtPlotter/issues/43 2020-06-27 14:35:45 +02:00
jkqtpstringtools.h Fixed Bug #43: jkqtp_format() had undefined behaviour, because va_start was called with a ref-parameter, which does not work. Now there are 4 overloaded template variants. See https://github.com/jkriege2/JKQtPlotter/issues/43 2020-06-27 14:35:45 +02:00
jkqttools.cpp + bugfixed DLL-export when building shared libraries 2019-06-22 14:21:32 +02:00
jkqttools.h + bugfixed DLL-export when building shared libraries 2019-06-22 14:21:32 +02:00
LibTarget.cmake.in improvements in CMake setup: 2020-06-28 15:53:26 +02:00