tomwalters@296: // Copyright 2010, Thomas Walters tomwalters@296: // tomwalters@296: // AIM-C: A C++ implementation of the Auditory Image Model tomwalters@296: // http://www.acousticscale.org/AIMC tomwalters@296: // tomwalters@296: // This program is free software: you can redistribute it and/or modify tomwalters@296: // it under the terms of the GNU General Public License as published by tomwalters@296: // the Free Software Foundation, either version 3 of the License, or tomwalters@296: // (at your option) any later version. tomwalters@296: // tomwalters@296: // This program is distributed in the hope that it will be useful, tomwalters@296: // but WITHOUT ANY WARRANTY; without even the implied warranty of tomwalters@296: // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the tomwalters@296: // GNU General Public License for more details. tomwalters@296: // tomwalters@296: // You should have received a copy of the GNU General Public License tomwalters@296: // along with this program. If not, see . tomwalters@296: tomwalters@296: /*! tomwalters@296: * \file tomwalters@296: * \brief Convert a file containing a list of pairs of tab-separated tomwalters@296: * items, one per line, and convert it to a vector > tomwalters@296: * tomwalters@296: * \author Thomas Walters tomwalters@296: * \date created 2010/02/23 tomwalters@296: * \version \$Id$ tomwalters@296: */ tomwalters@296: tomwalters@296: #include tomwalters@296: #include tomwalters@296: #include tomwalters@296: tomwalters@296: #include "Support/Common.h" tomwalters@296: tomwalters@296: namespace aimc { tomwalters@296: using std::vector; tomwalters@296: using std::pair; tomwalters@296: using std::string; tomwalters@296: class FileList { tomwalters@296: public: tomwalters@296: static vector > Load(string filename); tomwalters@296: }; tomwalters@296: } // namespace aimc