Skip to content
Snippets Groups Projects
Commit e56b2e0c authored by Oliver Sander's avatar Oliver Sander Committed by sander@PCPOOL.MI.FU-BERLIN.DE
Browse files

operator<<

[[Imported from SVN: r905]]
parent 3299852f
No related branches found
No related tags found
No related merge requests found
...@@ -15,4 +15,11 @@ struct Configuration ...@@ -15,4 +15,11 @@ struct Configuration
}; };
//! Send configuration to output stream
std::ostream& operator<< (std::ostream& s, const Configuration& c)
{
s << "(" << c.r << ") (" << c.q << ")";
return s;
}
#endif #endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment