cpp-utilities/application/fakeqtconfigarguments.cpp

21 lines
724 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 ApplicationUtilities {
/*!
* \class FakeQtConfigArguments
* \brief The FakeQtConfigArguments class provides arguments for the Qt GUI used when
* the application hasn't been built with Qt GUI support.
*/
/*!
* \brief Constructs new fake Qt-config arguments.
*/
2015-04-22 18:36:40 +02:00
FakeQtConfigArguments::FakeQtConfigArguments() :
2016-06-12 01:56:57 +02:00
m_qtWidgetsGuiArg("qt-widgets-gui", 'g', "shows a Qt widgets based graphical user interface (the application has not been built with Qt widgets support)"),
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 ApplicationUtilities