Ubpa / UGraphviz

Ubpa Graphviz C++ wrapper

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

UGraphviz

Ubpa Graphviz C++ wrapper

⭐ Star us on GitHub — it helps!

repo-size tag license

Example

#include <UGraphviz/UGraphviz.hpp>

#include <iostream>

using namespace Ubpa;

using namespace std;

int main() {
  UGraphviz::Graph graph("hello world", true);

  auto& registry = graph.GetRegistry();

  auto v_a = registry.RegisterNode("a");
  auto v_b = registry.RegisterNode("b");
  auto v_c = registry.RegisterNode("c");
  auto v_d = registry.RegisterNode("d");

  auto e_ab = registry.RegisterEdge(v_a, v_b);
  auto e_ac = registry.RegisterEdge(v_a, v_c);
  auto e_bd = registry.RegisterEdge(v_b, v_d);
  auto e_cd = registry.RegisterEdge(v_c, v_d);

  graph
    .AddEdge(e_ab)
    .AddEdge(e_ac)
    .AddEdge(e_bd)
    .AddEdge(e_cd);

  cout << graph.Dump() << endl;

  return 0;
}

Result is

strict digraph "hello_world" {
  "a" -> "b"
  "a" -> "c"
  "b" -> "d"
  "c" -> "d"
}

Alt text

result graphviz source code gravizo_mask_result digraph hello_world { "a" -> "b" "a" -> "c" "b" -> "d" "c" -> "d" } gravizo_mask_result

other example

Licensing

You can copy and paste the license summary from below.

MIT License

Copyright (c) 2020 Ubpa

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

About

Ubpa Graphviz C++ wrapper

License:MIT License


Languages

Language:C++ 93.0%Language:CMake 7.0%