Program Listing for File METISGraphReader.hpp

Return to documentation for file (include/networkit/io/METISGraphReader.hpp)

/*
 * METISGraphReader.hpp
 *
 *  Created on: 17.01.2013
 *      Author: Christian Staudt
 */

#ifndef NETWORKIT_IO_METIS_GRAPH_READER_HPP_
#define NETWORKIT_IO_METIS_GRAPH_READER_HPP_

#include <networkit/io/GraphReader.hpp>

namespace NetworKit {

class METISGraphReader final : public GraphReader {
public:
    METISGraphReader() = default;

    Graph read(const std::string &path) override;
};

} /* namespace NetworKit */
#endif // NETWORKIT_IO_METIS_GRAPH_READER_HPP_