Hello all,

I have the following code:

typedef map<string, CNodeData*, less<string> > NodeData;

NodeData _datalist;

say I populate _datalist, then how can I iterate through it and delete all the CNodeData items?? So I dont have memory leaks.

Thanks!