Program Listing for File RBGraphReader.hpp

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

/*
 * RBGraphReader.hpp
 *
 *  Created on: 16.10.2024
 *      Author: bernlu
 */

#ifndef NETWORKIT_IO_RB_GRAPH_READER_HPP_
#define NETWORKIT_IO_RB_GRAPH_READER_HPP_

#include <networkit/io/GraphReader.hpp>

namespace NetworKit {

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

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

} /* namespace NetworKit */
#endif // NETWORKIT_IO_RB_GRAPH_READER_HPP_