C++ Utilities  5.10.5
Useful C++ classes and routines such as argument parser, IO and conversion utilities
fakeqtconfigarguments.cpp
Go to the documentation of this file.
2 
3 namespace CppUtilities {
4 
16  : m_qtWidgetsGuiArg(
17  "qt-widgets-gui", 'g', "shows a Qt widgets based graphical user interface (the application has not been built with Qt widgets support)")
18  , m_qtQuickGuiArg(
19  "qt-quick-gui", 'q', "shows a Qt quick based graphical user interface (the application has not been built with Qt quick support)")
20 {
21  m_qtWidgetsGuiArg.setFlags(Argument::Flags::Operation);
22  m_qtQuickGuiArg.setFlags(Argument::Flags::Operation);
23 }
24 
25 } // namespace CppUtilities
void setFlags(Argument::Flags flags)
Replaces all Argument::Flags for the argument with the flags.
FakeQtConfigArguments()
Constructs new fake Qt-config arguments.
Contains all utilities provides by the c++utilities library.