shreyasbharath/cpp_dependency_graph

View on GitHub
lib/cpp_dependency_graph/graph_to_graphml_visualiser.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

# Outputs a `graphml` langugage representation of a dependency graph
class GraphToGraphmlVisualiser
  def generate(deps, file)
    # TODO: Implement
  end
end