/* * 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. */ /* * EmptyTextQuery.cpp * * Created on: Oct 25, 2010 * Author: heber */ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "CodePatterns/MemDebug.hpp" #include #include "TextUI/Query/TextQuery.hpp" #include "CodePatterns/Log.hpp" #include "CodePatterns/Verbose.hpp" TextDialog::EmptyTextQuery::EmptyTextQuery(std::string title, std::string _description) : Dialog::EmptyQuery(title,_description) {} TextDialog::EmptyTextQuery::~EmptyTextQuery() {} bool TextDialog::EmptyTextQuery::handle() { cout << "Message of " << getTitle() << ":\n" << getDescription() << "\n"; return true; }