comparison qt-interpreter.h @ 7:04867eba6428

function objects and signals/slots for errors and results
author John W. Eaton <jwe@octave.org>
date Thu, 23 May 2019 09:27:09 -0400
parents 1b575145197e
children 894be158b32d
comparison
equal deleted inserted replaced
6:1b575145197e 7:04867eba6428
20 20
21 qt_interpreter (const qt_interpreter&) = delete; 21 qt_interpreter (const qt_interpreter&) = delete;
22 22
23 qt_interpreter& operator = (const qt_interpreter&) = delete; 23 qt_interpreter& operator = (const qt_interpreter&) = delete;
24 24
25 signals:
26
27 void result_ready (double);
28
29 void error_signal (const QString&);
30
25 public slots: 31 public slots:
26 32
27 void execute (void); 33 void execute (void);
28 34
29 void accept_input_line (const QString& line); 35 void accept_input_line (const QString& line);