65a66,67
> #include <iostream>
>
88c90
< void printStats(ostream& out) const;
---
> void printStats(std::ostream& out) const;
90c92
< void printConfig(ostream& out) const;
---
> void printConfig(std::ostream& out) const;
115c117
< void print(ostream& out) const;
---
> void print(std::ostream& out) const;
141,142c143,144
< inline ostream&
< operator<<(ostream& out, const SimpleNetwork& obj)
---
> inline std::ostream&
> operator<<(std::ostream& out, const SimpleNetwork& obj)
145c147
< out << flush;
---
> out << std::flush;