#include "GUISpinBox.h" namespace GUI { GUISpinBox::GUISpinBox(QWidget * parent) : QSpinBox(parent) { } GUISpinBox::~GUISpinBox() { } void GUISpinBox::wheelEvent(QWheelEvent * event) { Q_UNUSED(event); } }