Toolbox Qt
Loading...
Searching...
No Matches
corehelper.h
1#ifndef TBQ_CORE_COREHELPER_H
2#define TBQ_CORE_COREHELPER_H
3
4#include "toolboxqt/toolboxqt_global.h"
5
6#include <QWidget>
7
8namespace tbq
9{
10
11class TOOLBOXQT_EXPORT CoreHelper
12{
13
14public:
15 static void quitApplication(const QString &reason = QString(), QWidget *parent = nullptr);
16};
17
18} // namespace tbq
19
20#endif // TBQ_CORE_COREHELPER_H
Class containing multiple helpful methods.
Definition: corehelper.h:12