ModelSpace
All Classes Namespaces Functions Variables Enumerations Pages
modelspace::ImNode Struct Reference

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< Connectioninputs
 A list of all inputs to the node.
 
std::vector< Connectionoutputs
 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< ImNodechildren
 A list of all child nodes to this node.
 
node_types_e node_type
 Node type information – most will be STANDARD.
 

Detailed Description

Hold all data related to a visual node in the ImGUI UX.

Member Function Documentation

◆ fromJson()

void modelspace::ImNode::fromJson ( const nlohmann::json &  j)

Create Node object from json.

Parameters
jThe json object from which Node is created

◆ toJson()

nlohmann::json modelspace::ImNode::toJson ( )

Create json object from Node.

Returns
The json object from Node data

The documentation for this struct was generated from the following files: