#include "CustomPropertiesAlg.h"
#include <string>
#include <unordered_map>
#include <Gaudi/Parsers/Factory.h>
#include <GaudiKernel/ToStream.h>
#include <map>
Go to the source code of this file.
|
| typedef std::unordered_map< std::string, std::string > | MyCustomType |
| |
◆ MyCustomType
| typedef std::unordered_map<std::string, std::string> MyCustomType |
◆ operator<<()
| ostream& std::operator<< |
( |
ostream & |
s, |
|
|
const MyCustomType & |
m |
|
) |
| |
Definition at line 47 of file CustomPropertiesAlg.cpp.
52 const map<string, string> m1(
m.begin(),
m.end() );
53 for (
const auto& i : m1 ) {