mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2025-01-26 15:39:09 +08:00
72 lines
1.9 KiB
C++
72 lines
1.9 KiB
C++
/*
|
|
Copyright (c) 2008-2019 Jan W. Krieger (<jan@jkrieger.de>, <j.krieger@dkfz.de>)
|
|
|
|
|
|
|
|
This software is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
|
|
|
|
#ifndef JKQTPDEBUGGINGTOOLS_H_INCLUDED
|
|
#define JKQTPDEBUGGINGTOOLS_H_INCLUDED
|
|
#include "jkqtcommon/jkqtp_imexport.h"
|
|
#include <QString>
|
|
#include <QElapsedTimer>
|
|
|
|
|
|
#ifndef __WINDOWS__
|
|
# if defined(WIN32) || defined(WIN64) || defined(_MSC_VER) || defined(_WIN32)
|
|
# define __WINDOWS__
|
|
# endif
|
|
#endif
|
|
|
|
#ifndef __LINUX__
|
|
# if defined(linux)
|
|
# define __LINUX__
|
|
# endif
|
|
#endif
|
|
|
|
#undef JKTOOLS_TIMER_USE_TIME
|
|
#if defined(__WINDOWS__)
|
|
#include<windows.h>
|
|
#elif defined(__LINUX__)
|
|
#include <sys/time.h>
|
|
#else
|
|
#define JKTOOLS_TIMER_USE_TIME
|
|
#endif
|
|
|
|
|
|
|
|
/** \brief RAII construct that times its lifetime, outputting properly indented qDebug()-message
|
|
* \ingroup jkqtptools_debugging
|
|
*/
|
|
class JKQTP_LIB_EXPORT JKQTPAutoOutputTimer : public QElapsedTimer
|
|
{
|
|
public:
|
|
explicit JKQTPAutoOutputTimer(const QString& message);
|
|
~JKQTPAutoOutputTimer();
|
|
void write(const QString& message) const;
|
|
protected:
|
|
QString message;
|
|
QString indent;
|
|
static int global_indent;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // JKQTPDEBUGGINGTOOLS_H_INCLUDED
|