10 lines
193 B
C++
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)
|
|
{}
|
|
|
|
}
|