#include "data/Edge.h" #include "data/Node.h" Edge::Edge(std::weak_ptr from, std::weak_ptr to) : m_from(from) , m_to(to) { } Edge::~Edge() { }