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