cpp-utilities/application/fakeqtconfigarguments.cpp

24 lines
817 B
C++
Raw Normal View History

2015-09-06 20:19:09 +02:00
#include "./fakeqtconfigarguments.h"
2015-04-22 18:36:40 +02:00
namespace CppUtilities {
2015-04-22 18:36:40 +02:00
/*!
* \class FakeQtConfigArguments
* \brief The FakeQtConfigArguments class provides arguments for the Qt GUI used when
* the application hasn't been built with Qt GUI support.
2017-10-25 19:32:45 +02:00
* \deprecated Get rid of this and simply don't add arguments for Qt GUI when disabled.
*/
/*!
* \brief Constructs new fake Qt-config arguments.
*/
2017-05-01 03:13:11 +02:00
FakeQtConfigArguments::FakeQtConfigArguments()
: m_qtWidgetsGuiArg(
2019-05-04 20:58:23 +02:00
"qt-widgets-gui", 'g', "shows a Qt widgets based graphical user interface (the application has not been built with Qt widgets support)")
2017-05-01 03:13:11 +02:00
, m_qtQuickGuiArg(
"qt-quick-gui", 'q', "shows a Qt quick based graphical user interface (the application has not been built with Qt quick support)")
{
}
2015-04-22 18:36:40 +02:00
} // namespace CppUtilities