equal
deleted
inserted
replaced
85 Node::GetNDevices (void) const |
85 Node::GetNDevices (void) const |
86 { |
86 { |
87 return m_devices.size (); |
87 return m_devices.size (); |
88 } |
88 } |
89 |
89 |
|
90 void Node::Dispose() |
|
91 { |
|
92 } |
|
93 |
90 // Node stack creation and management routines. |
94 // Node stack creation and management routines. |
91 Node* Node::Create() |
95 Node* Node::Create() |
92 { |
96 { |
93 Node* n = g_prototypes.Back()->Copy(); // Copy the top of the stack |
97 Node* n = g_prototypes.Back()->Copy(); // Copy the top of the stack |
94 g_nodes.Add(n); // Add to smart vector (mem mgmt) |
98 g_nodes.Add(n); // Add to smart vector (mem mgmt) |