tomwalters@23: // Copyright 2010, Thomas Walters tomwalters@23: // tomwalters@23: // AIM-C: A C++ implementation of the Auditory Image Model tomwalters@23: // http://www.acousticscale.org/AIMC tomwalters@23: // tomwalters@45: // Licensed under the Apache License, Version 2.0 (the "License"); tomwalters@45: // you may not use this file except in compliance with the License. tomwalters@45: // You may obtain a copy of the License at tomwalters@23: // tomwalters@45: // http://www.apache.org/licenses/LICENSE-2.0 tomwalters@23: // tomwalters@45: // Unless required by applicable law or agreed to in writing, software tomwalters@45: // distributed under the License is distributed on an "AS IS" BASIS, tomwalters@45: // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. tomwalters@45: // See the License for the specific language governing permissions and tomwalters@45: // limitations under the License. tomwalters@23: tomwalters@23: /*! tomwalters@23: * \file tomwalters@23: * \brief Convert a file containing a list of pairs of tab-separated tomwalters@23: * items, one per line, and convert it to a vector > tomwalters@23: * tomwalters@23: * \author Thomas Walters tomwalters@23: * \date created 2010/02/23 tomwalters@23: * \version \$Id$ tomwalters@23: */ tomwalters@23: tomwalters@23: #include tomwalters@23: #include tomwalters@23: #include tomwalters@23: tomwalters@23: #include "Support/Common.h" tomwalters@23: tomwalters@23: namespace aimc { tomwalters@23: using std::vector; tomwalters@23: using std::pair; tomwalters@23: using std::string; tomwalters@23: class FileList { tomwalters@23: public: tomwalters@23: static vector > Load(string filename); tomwalters@23: }; tomwalters@23: } // namespace aimc