15 lines
161 B
C++
15 lines
161 B
C++
#include "nodegraph.h"
|
|
|
|
#include <QDebug>
|
|
|
|
NodeGraph::NodeGraph() :
|
|
output_node_(nullptr)
|
|
{
|
|
|
|
}
|
|
|
|
Node *NodeGraph::OutputNode()
|
|
{
|
|
return output_node_.get();
|
|
}
|