* Constructor. Creates a new widget with all data initialized empty. * * \param parent the widget parent; passed on to QWidget */
| 63 | * \param parent the widget parent; passed on to QWidget |
| 64 | */ |
| 65 | Widget::Widget(QWidget *parent) |
| 66 | : QWidget(parent) |
| 67 | , _d(new Private(this)) |
| 68 | { |
| 69 | // as default we have a cartesian coordinate plane ... |
| 70 | // ... and a line diagram |
| 71 | setType(Line); |
| 72 | } |
| 73 | |
| 74 | /** |
| 75 | * Destructor. |
nothing calls this directly
no outgoing calls
no test coverage detected