00001 /********************************************************************** 00002 QueueInterface - Base queue interface class implementation 00003 00004 Copyright (C) 2011 by David C. Lonie 00005 00006 This program is free software; you can redistribute it and/or modify 00007 it under the terms of the GNU General Public License as published by 00008 the Free Software Foundation version 2 of the License. 00009 00010 This program is distributed in the hope that it will be useful, 00011 but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 GNU General Public License for more details. 00014 ***********************************************************************/ 00015 00016 #include <globalsearch/queueinterface.h> 00017 00018 #include <globalsearch/structure.h> 00019 #include <globalsearch/optimizer.h> 00020 #include <globalsearch/structure.h> 00021 00022 #include <QtCore/QString> 00023 #include <QtCore/QStringList> 00024 00025 00026 namespace GlobalSearch { 00027 00028 bool QueueInterface::writeInputFiles(Structure *s) const 00029 { 00030 return writeFiles(s, m_opt->optimizer()->getInterpretedTemplates(s)); 00031 } 00032 00033 } // end namespace GlobalSearch