↰ Return to documentation for file (include/networkit/io/DotGraphWriter.hpp
)
/*
* DotGraphWriter.hpp
*
* Created on: Jun 5, 2013
* Author: forigem
*/
#ifndef NETWORKIT_IO_DOT_GRAPH_WRITER_HPP_
#define NETWORKIT_IO_DOT_GRAPH_WRITER_HPP_
#include <networkit/graph/Graph.hpp>
#include <networkit/io/GraphWriter.hpp>
namespace NetworKit {
class DotGraphWriter final : public GraphWriter {
public:
void write(const Graph &G, std::string_view path) override;
};
} /* namespace NetworKit */
#endif // NETWORKIT_IO_DOT_GRAPH_WRITER_HPP_