// Copyright (c) 2008 Michael Miceli and Christopher Miceli // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include #include #include "type.hpp" #ifndef MR_SORTER_HPP #define MR_SORTER_HPP namespace MapReduce { template std::string sorter(std::vector fileList) { while(fileList.size() > 0) { boost::iostreams::stream list(fileList.back()); fileList.pop_back(); } return "mapFile-merged"; } } // namespace MapReduce #endif