Changeset View
Changeset View
Standalone View
Standalone View
source/blender/compositor/intern/COM_NodeGraph.h
| Show First 20 Lines • Show All 50 Lines • ▼ Show 20 Lines | struct Link { | ||||
| } | } | ||||
| }; | }; | ||||
| private: | private: | ||||
| Vector<Node *> m_nodes; | Vector<Node *> m_nodes; | ||||
| Vector<Link> m_links; | Vector<Link> m_links; | ||||
| public: | public: | ||||
| NodeGraph(); | |||||
| ~NodeGraph(); | ~NodeGraph(); | ||||
| const Vector<Node *> &nodes() const | const Vector<Node *> &nodes() const | ||||
| { | { | ||||
| return m_nodes; | return m_nodes; | ||||
| } | } | ||||
| const Vector<Link> &links() const | const Vector<Link> &links() const | ||||
| { | { | ||||
| ▲ Show 20 Lines • Show All 57 Lines • Show Last 20 Lines | |||||