198a199,202
> #include <iostream>
> #include <sstream>
> #include <string>
>
217c221
< extern stringstream ${ident}_transitionComment;
---
> extern std::stringstream ${ident}_transitionComment;
229,230c233,234
< const string toString() const;
< const string getName() const;
---
> const std::string toString() const;
> const std::string getName() const;
233,234c237,238
< void print(ostream& out) const;
< void printConfig(ostream& out) const;
---
> void print(std::ostream& out) const;
> void printConfig(std::ostream& out) const;
236c240
< void printStats(ostream& out) const;
---
> void printStats(std::ostream& out) const;
256c260
< string m_name;
---
> std::string m_name;
260c264
< map< string, string > m_cfg;
---
> map<std::string, std::string> m_cfg;
314a319,321
> #include <sstream>
> #include <string>
>
321a329,330
>
> using namespace std;
865a875,876
> #include <iostream>
>
876c887
< void dumpStats(ostream& out) const;
---
> void dumpStats(std::ostream& out) const;
938c949
< void ${ident}_Profiler::dumpStats(ostream& out) const
---
> void ${ident}_Profiler::dumpStats(std::ostream& out) const
939a951,952
> using namespace std;
>