/* * Project: MoleCuilder * Description: creates and alters molecular systems * Copyright (C) 2010-2012 University of Bonn. All rights reserved. * Please see the LICENSE file or "Copyright notice" in builder.cpp for details. */ /* * DoubleQtQueryPipe.cpp * * Created on: Oct 25, 2010 * Author: heber */ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "UIElements/Qt4/Pipe/DoubleQtQueryPipe.hpp" #include "UIElements/Qt4/QtDialog.hpp" #include "CodePatterns/MemDebug.hpp" DoubleQtQueryPipe::DoubleQtQueryPipe(Parameter &_content, QtDialog *_dialog) : content(_content), dialog(_dialog) {} DoubleQtQueryPipe::~DoubleQtQueryPipe() {} void DoubleQtQueryPipe::update(double newDbl) { content.set(newDbl); dialog->update(); }