project: added project skeleton
Skeleton includes emtpy implementations of application class structure. Source groups were added to CMakeLists to define filters in Visual Studio.
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
#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()
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user