What is the equivalent way of storing Python nested Dictionaries in C++
In Python i have:
{
'Cloth': {
'Tissue':None,
'Leather': {
'Bandage': None
}
},
'Smoke': {
'White':{
'Smallscale': None,
'Largescale':None
}
}
}
This SO Article Translating python dictionary to C++ describes it for flat dictionaries.