↰ 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(std::string_view path) override;
};
} /* namespace NetworKit */
#endif // NETWORKIT_IO_METIS_GRAPH_READER_HPP_