summaryrefslogtreecommitdiff
path: root/gr-qtgui/lib/const_sink_c_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'gr-qtgui/lib/const_sink_c_impl.h')
-rw-r--r--gr-qtgui/lib/const_sink_c_impl.h70
1 files changed, 35 insertions, 35 deletions
diff --git a/gr-qtgui/lib/const_sink_c_impl.h b/gr-qtgui/lib/const_sink_c_impl.h
index 1038b6558d..17f9e97e2e 100644
--- a/gr-qtgui/lib/const_sink_c_impl.h
+++ b/gr-qtgui/lib/const_sink_c_impl.h
@@ -64,54 +64,54 @@ public:
const std::string& name,
int nconnections,
QWidget* parent = NULL);
- ~const_sink_c_impl();
+ ~const_sink_c_impl() override;
bool check_topology(int ninputs, int noutputs) override;
- void exec_();
- QWidget* qwidget();
+ void exec_() override;
+ QWidget* qwidget() override;
#ifdef ENABLE_PYTHON
- PyObject* pyqwidget();
+ PyObject* pyqwidget() override;
#else
void* pyqwidget();
#endif
- void set_y_axis(double min, double max);
- void set_x_axis(double min, double max);
-
- void set_update_time(double t);
- void set_title(const std::string& title);
- void set_line_label(unsigned int which, const std::string& label);
- void set_line_color(unsigned int which, const std::string& color);
- void set_line_width(unsigned int which, int width);
- void set_line_style(unsigned int which, int style);
- void set_line_marker(unsigned int which, int marker);
- void set_nsamps(const int size);
- void set_line_alpha(unsigned int which, double alpha);
+ void set_y_axis(double min, double max) override;
+ void set_x_axis(double min, double max) override;
+
+ void set_update_time(double t) override;
+ void set_title(const std::string& title) override;
+ void set_line_label(unsigned int which, const std::string& label) override;
+ void set_line_color(unsigned int which, const std::string& color) override;
+ void set_line_width(unsigned int which, int width) override;
+ void set_line_style(unsigned int which, int style) override;
+ void set_line_marker(unsigned int which, int marker) override;
+ void set_nsamps(const int size) override;
+ void set_line_alpha(unsigned int which, double alpha) override;
void set_trigger_mode(trigger_mode mode,
trigger_slope slope,
float level,
int channel,
- const std::string& tag_key = "");
-
- std::string title();
- std::string line_label(unsigned int which);
- std::string line_color(unsigned int which);
- int line_width(unsigned int which);
- int line_style(unsigned int which);
- int line_marker(unsigned int which);
- double line_alpha(unsigned int which);
-
- void set_size(int width, int height);
-
- int nsamps() const;
- void enable_menu(bool en);
- void enable_autoscale(bool en);
- void enable_grid(bool en);
- void enable_axis_labels(bool en);
- void disable_legend();
- void reset();
+ const std::string& tag_key = "") override;
+
+ std::string title() override;
+ std::string line_label(unsigned int which) override;
+ std::string line_color(unsigned int which) override;
+ int line_width(unsigned int which) override;
+ int line_style(unsigned int which) override;
+ int line_marker(unsigned int which) override;
+ double line_alpha(unsigned int which) override;
+
+ void set_size(int width, int height) override;
+
+ int nsamps() const override;
+ void enable_menu(bool en) override;
+ void enable_autoscale(bool en) override;
+ void enable_grid(bool en) override;
+ void enable_axis_labels(bool en) override;
+ void disable_legend() override;
+ void reset() override;
int work(int noutput_items,
gr_vector_const_void_star& input_items,