Files
oak-editor/nodes/node.h
T
2019-05-08 00:41:44 +10:00

21 lines
221 B
C++

#ifndef NODE_H
#define NODE_H
#include <memory>
class NodeGraph;
class Node;
using NodePtr = std::shared_ptr<Node>;
class Node
{
public:
Node(NodeGraph* parent);
private:
NodeGraph* parent_;
};
#endif // NODE_H