Program Listing for File MTXGraphReader.hpp

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

#ifndef NETWORKIT_IO_MTX_GRAPH_READER_HPP_
#define NETWORKIT_IO_MTX_GRAPH_READER_HPP_

#include <networkit/io/GraphReader.hpp>

namespace NetworKit {

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

    Graph read(std::string_view path) override;
};

} /* namespace NetworKit */
#endif // NETWORKIT_IO_MTX_GRAPH_READER_HPP_