Program Listing for File METISGraphWriter.hpp

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

/*
 * METISGraphWriter.hpp
 *
 *  Created on: 30.01.2013
 *      Author: Christian Staudt
 */

#ifndef NETWORKIT_IO_METIS_GRAPH_WRITER_HPP_
#define NETWORKIT_IO_METIS_GRAPH_WRITER_HPP_

#include <networkit/io/GraphWriter.hpp>

namespace NetworKit {

class METISGraphWriter final : public GraphWriter {

public:
    METISGraphWriter() = default;

    void write(const Graph &G, std::string_view path) override;

    void write(const Graph &G, bool weighted, std::string_view path);
};

} /* namespace NetworKit */
#endif // NETWORKIT_IO_METIS_GRAPH_WRITER_HPP_