-
-
Notifications
You must be signed in to change notification settings - Fork 7.3k
Closed
Labels
kind: questionsolution: proposed fixa fix for the issue has been proposed and waits for confirmationa fix for the issue has been proposed and waits for confirmation
Description
Hi ,
I have to write a config file from a node editor with something like this
struct Node
{
int id;
string name;
}
struct Pin
{
int id;
Node* node;
}
struct Link
{
int id;
Pin* start;
Pin* end;
}
struct Config
{
std::vector Nodes;
std::vector Pins;
std::vector Links;
}
How can i serialize the topover object Config ? and deserialize ?
Thanks!
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
kind: questionsolution: proposed fixa fix for the issue has been proposed and waits for confirmationa fix for the issue has been proposed and waits for confirmation