Files
easy-graph--easy-graph/cpp_easygraph/common/common.cpp
T
2026-07-13 12:36:30 +08:00

3 lines
126 B
C++

#include "common.h"
graph_edge::graph_edge(node_t u_, node_t v_, edge_attr_dict_factory attr_) : u(u_), v(v_), attr(attr_) {}