GraphC/src/GraphModel/Edge.cpp
2024-04-08 07:39:41 +05:00

10 lines
193 B
C++

#include "GraphModel.hpp"
namespace GraphC::GraphModel {
Edge::Edge(id_t _id, id_t _from_attr_id, id_t _to_attr_id)
: id(_id), from_attr_id(_from_attr_id), to_attr_id(_to_attr_id)
{}
}