I am writing a c++ code, it should be able to construct a multitree with the node that I wrote. But I tried to uses the tree containers that I download at the below address to store my node, but all of them seems that cannot store the node which has multiple values in it.
http://www.datasoftsolutions.net/tree_container_library/overview.php
http://archive.gamedev.net/archive/reference/programming/features/coretree2/default.html
struct node{ //construct the node
char *dirname;
char date[12];
int loc;
bool prot;
}
So are there any tree containers can store the node that I wrote? I need to store the nodes as a multitree.