From e56b2e0c908518092fa5ab872d255254eb2597b9 Mon Sep 17 00:00:00 2001
From: Oliver Sander <sander@igpm.rwth-aachen.de>
Date: Wed, 23 Aug 2006 16:18:20 +0000
Subject: [PATCH] operator<<

[[Imported from SVN: r905]]
---
 src/configuration.hh | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/src/configuration.hh b/src/configuration.hh
index 2e8ca5dc..0b23bda1 100644
--- a/src/configuration.hh
+++ b/src/configuration.hh
@@ -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
-- 
GitLab