Files
Sourcetrail/src/lib/data/Edge.cpp
T
Eberhard Graether d4e3433e5d project: added project skeleton
Skeleton includes emtpy implementations of application class structure.
Source groups were added to CMakeLists to define filters in Visual Studio.
2014-03-31 17:59:52 +02:00

14 lines
158 B
C++

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