comparison libgui/src/qt-interpreter-events.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 ad014fc78bd6 c6d54dd31a7e
children deb553ac2c54
comparison
equal deleted inserted replaced
31645:bd9da634f00d 31647:431f80aba37a
42 // Defined for purposes of sending QList<int> as part of signal. 42 // Defined for purposes of sending QList<int> as part of signal.
43 typedef QList<int> QIntList; 43 typedef QList<int> QIntList;
44 44
45 class octave_value; 45 class octave_value;
46 46
47 namespace octave 47 OCTAVE_BEGIN_NAMESPACE(octave)
48 { 48
49 class base_qobject; 49 class base_qobject;
50 50
51 // The functions in this class are not normally called directly, but 51 // The functions in this class are not normally called directly, but
52 // are invoked from the Octave interpreter thead by methods in the 52 // are invoked from the Octave interpreter thead by methods in the
53 // event_manager class. In most cases, they should only translate 53 // event_manager class. In most cases, they should only translate
322 322
323 QMutex m_mutex; 323 QMutex m_mutex;
324 324
325 QWaitCondition m_waitcondition; 325 QWaitCondition m_waitcondition;
326 }; 326 };
327 } 327
328 OCTAVE_END_NAMESPACE(octave)
328 329
329 #endif 330 #endif