comparison libgui/src/qt-application.h @ 31647:431f80aba37a

maint: Merge stable to default.
author John W. Eaton <jwe@octave.org>
date Tue, 06 Dec 2022 15:37:43 -0500
parents c6683fcc5c33 c6d54dd31a7e
children deb553ac2c54
comparison
equal deleted inserted replaced
31645:bd9da634f00d 31647:431f80aba37a
28 28
29 #include <string> 29 #include <string>
30 30
31 #include "octave.h" 31 #include "octave.h"
32 32
33 namespace octave 33 OCTAVE_BEGIN_NAMESPACE(octave)
34 { 34
35 // Programming Note: This file must not include any Qt headers. Any 35 // Programming Note: This file must not include any Qt headers. Any
36 // Qt header files required by the qt_application::execute function 36 // Qt header files required by the qt_application::execute function
37 // must be included only in the corresponding .cc file. 37 // must be included only in the corresponding .cc file.
38 38
39 //! This class inherits from the pure-virtual base class 39 //! This class inherits from the pure-virtual base class
73 private: 73 private:
74 74
75 // If TRUE, the GUI should be started. 75 // If TRUE, the GUI should be started.
76 bool m_gui_running = false; 76 bool m_gui_running = false;
77 }; 77 };
78 } 78
79 OCTAVE_END_NAMESPACE(octave)
79 80
80 #endif 81 #endif