00001 #include "rqt_multiplot/QwtPlotCustom.h" 00002 00003 namespace rqt_multiplot { 00004 00005 QwtPlotCustom::QwtPlotCustom(QWidget *parent) 00006 : QwtPlot(parent) { 00007 00008 } 00009 00010 QwtPlotCustom::QwtPlotCustom(const QwtText &title, QWidget *p) 00011 : QwtPlot(title, p) { 00012 00013 } 00014 00015 QSize QwtPlotCustom::sizeHint() const { 00016 return QSize(50, 50); 00017 } 00018 00019 QSize QwtPlotCustom::minimumSizeHint() const { 00020 return QSize(50, 50); 00021 } 00022 00023 }