26 observeList.insert( std::pair<int,int>(nr,stream) );
27 dropableList.insert( std::pair<int,bool>(nr,dropable) );
32 auto it = observeList.find( nr );
33 if (it != observeList.end())
35 auto it2 = dropableList.find( nr );
36 if (it2 != dropableList.end())
37 dropable = it2->second;
38 observeList.erase(nr);
39 dropableList.erase(nr);
44 auto it = observeList.find( nr );
45 if (it == observeList.end())
47 auto it2 = dropableList.find( nr );
48 if (it2 == dropableList.end())
51 dropable = it2->second;