次のような std::map オブジェクトがあります
typedef std::map<int,int> RoutingTable;
RoutingTable rtable;
そして、関数で初期化しました
for (int i=0; i<getNumNodes(); i++)
{
int gateIndex = parentModuleGate->getIndex();
int address = topo->getNode(i)->getModule()->par("address");
rtable[address] = gateIndex;
}
ここで、別の関数で rtable の値を変更したいと考えています。どうすればこれを達成できますか?