/* * Project: MoleCuilder * Description: creates and alters molecular systems * Copyright (C) 2010 University of Bonn. All rights reserved. * Please see the LICENSE file or "Copyright notice" in builder.cpp for details. */ /* * Query.cpp * * Created on: Oct 25, 2010 * Author: heber */ #ifdef HAVE_CONFIG_H #include #endif #include "Helpers/MemDebug.hpp" #include "Dialog.hpp" // Base class Dialog::Query::Query(string _title, string _description) : title(_title), description(_description) {} Dialog::Query::~Query() {} const std::string Dialog::Query::getTitle() const{ return title; } const std::string Dialog::Query::getDescription() const{ return description; }