7 std::auto_ptr<ParameterDescriptionCases<bool> >
11 std::auto_ptr<std::map<bool, edm::value_ptr<ParameterDescriptionNode> > > rightCases = right->caseMap();
13 iEnd = rightCases->end();
14 iter != iEnd; ++iter) {
15 bool caseValue = iter->first;
16 std::auto_ptr<ParameterDescriptionNode>
node(iter->second->clone());
17 left->insert(caseValue,
node);
22 std::auto_ptr<ParameterDescriptionCases<int> >
26 std::auto_ptr<std::map<int, edm::value_ptr<ParameterDescriptionNode> > > rightCases = right->caseMap();
28 iEnd = rightCases->end();
29 iter != iEnd; ++iter) {
30 int caseValue = iter->first;
31 std::auto_ptr<ParameterDescriptionNode>
node(iter->second->clone());
32 left->insert(caseValue,
node);
37 std::auto_ptr<ParameterDescriptionCases<std::string> >
41 std::auto_ptr<std::map<std::string, edm::value_ptr<ParameterDescriptionNode> > > rightCases = right->caseMap();
43 iEnd = rightCases->end();
44 iter != iEnd; ++iter) {
46 std::auto_ptr<ParameterDescriptionNode>
node(iter->second->clone());
47 left->insert(caseValue,
node);
std::auto_ptr< ParameterDescriptionCases< bool > > operator||(std::auto_ptr< ParameterDescriptionCases< bool > >, std::auto_ptr< ParameterDescriptionCases< bool > >)