↰ Return to documentation for file (include/networkit/io/SNAPGraphWriter.hpp)
/*
 * SNAPGraphWriter.hpp
 *
 *  Created on: 24.09.2013
 *      Author: cls
 */
#ifndef NETWORKIT_IO_SNAP_GRAPH_WRITER_HPP_
#define NETWORKIT_IO_SNAP_GRAPH_WRITER_HPP_
#include <networkit/io/GraphWriter.hpp>
namespace NetworKit {
class SNAPGraphWriter final : public GraphWriter {
public:
    SNAPGraphWriter() = default;
    void write(const Graph &G, std::string_view path) override;
};
} /* namespace NetworKit */
#endif // NETWORKIT_IO_SNAP_GRAPH_WRITER_HPP_