![]() |
|
An abstract class to monitor network edit operations. More...
#include <network.h>
Public Member Functions | |
| virtual void | WillClear ()=0 |
| Will be called before a network is to be cleared out. | |
| virtual void | DidConnect (const VdfConnection *connection)=0 |
| Will be called after a connection has been made. | |
| virtual void | DidAddNode (const VdfNode *node)=0 |
| Will be called after a node has been added to the network. | |
| virtual void | WillDelete (const VdfNode *node)=0 |
Will be called before node is deleted. | |
| virtual void | WillDelete (const VdfConnection *connection)=0 |
| Will be called before a connection is deleted. | |
An abstract class to monitor network edit operations.
Note that "will" notification is sent before any edits are made. "Did" notification is sent after the edit operation is completed.
|
pure virtual |
Will be called after a node has been added to the network.
|
pure virtual |
Will be called after a connection has been made.
|
pure virtual |
Will be called before a network is to be cleared out.
When clearing out a network all nodes and connections will be deleted. Note that we don't sent notices for them during the clear operation.
|
pure virtual |
Will be called before a connection is deleted.
|
pure virtual |
Will be called before node is deleted.