![]() |
ModelSpace
|
Hold all data related to a visual node in the ImGUI UX. More...
#include <ImNode.h>
Public Member Functions | |
void | fromJson (const nlohmann::json &j) |
Create Node object from json. | |
nlohmann::json | toJson () |
Create json object from Node. | |
void | dump () |
Output all node information. | |
Public Attributes | |
std::string | name |
The name of the node. | |
long | unique_id |
The unique ID of the node given by the ImGUI UX. | |
int | hidden = 0 |
Whether or not this node has been hidden in the GUI via deletion. | |
std::vector< Connection > | inputs |
A list of all inputs to the node. | |
std::vector< Connection > | outputs |
A list of all outputs from the node. | |
std::string | class_type |
The type of the node's base class (model type or similar) | |
std::vector< ImNode > | children |
A list of all child nodes to this node. | |
node_types_e | node_type |
Node type information – most will be STANDARD. | |
Hold all data related to a visual node in the ImGUI UX.
void modelspace::ImNode::fromJson | ( | const nlohmann::json & | j | ) |
Create Node object from json.
j | The json object from which Node is created |
nlohmann::json modelspace::ImNode::toJson | ( | ) |
Create json object from Node.