↰ Return to documentation for file (include/networkit/io/ThrillGraphBinaryReader.hpp
)
/*
* ThrillGraphBinaryReader.hpp
*
* @author Michael Hamann
*/
#ifndef NETWORKIT_IO_THRILL_GRAPH_BINARY_READER_HPP_
#define NETWORKIT_IO_THRILL_GRAPH_BINARY_READER_HPP_
#include <string>
#include <vector>
#include <networkit/io/GraphReader.hpp>
namespace NetworKit {
class ThrillGraphBinaryReader final : public GraphReader {
public:
ThrillGraphBinaryReader(count n = 0);
Graph read(std::string_view path) override;
Graph read(const std::vector<std::string> &path);
private:
const count n;
};
} /* namespace NetworKit */
#endif // NETWORKIT_IO_THRILL_GRAPH_BINARY_READER_HPP_