nodes can now be connected through the node editor

This commit is contained in:
itsmattkc
2019-04-13 02:40:58 +10:00
parent 6b67727bd8
commit 8cd96eae64
24 changed files with 480 additions and 85 deletions
+21
View File
@@ -0,0 +1,21 @@
#include "nodeedge.h"
#include <QDebug>
#include "effects/effectrow.h"
NodeEdge::NodeEdge(EffectRow *output, EffectRow *input) :
output_(output),
input_(input)
{
}
EffectRow *NodeEdge::output()
{
return output_;
}
EffectRow *NodeEdge::input()
{
return input_;
}