From 80b2a9cd20af0d30d4ea05d985cc72600b137da0 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gr=C3=A9goire=20KUBLER?= <gregoire.kubler@proton.me>
Date: Fri, 29 Mar 2024 14:56:12 +0100
Subject: [PATCH] chore : commented the operator<< out

---
 include/aidge/graph/Node.hpp | 13 ++++++------
 src/graph/Node.cpp           | 38 ++++++++++++++++++------------------
 2 files changed, 26 insertions(+), 25 deletions(-)

diff --git a/include/aidge/graph/Node.hpp b/include/aidge/graph/Node.hpp
index c9004a8e4..908f56295 100644
--- a/include/aidge/graph/Node.hpp
+++ b/include/aidge/graph/Node.hpp
@@ -457,12 +457,13 @@ private:
    */
   void addParent(const NodePtr otherNode, const IOIndex_t inId);
 
-  /**
-   * @brief operator<< overload to ease print & debug of nodes
-   * @param[inout] ostream to print to 
-   * @param[in] n node to print
-   */
-  friend std::ostream& operator << (std::ostream& os, Node& n); 
+  // OPERATOR FUNCTIONNAL but commented out to avoid iostream inclusion
+  // /**
+  //  * @brief operator<< overload to ease print & debug of nodes
+  //  * @param[inout] ostream to print to 
+  //  * @param[in] n node to print
+  //  */
+  // friend std::ostream& operator << (std::ostream& os, Node& n); 
 };
 
 } // namespace Aidge
diff --git a/src/graph/Node.cpp b/src/graph/Node.cpp
index fb252c349..f81b2b88f 100644
--- a/src/graph/Node.cpp
+++ b/src/graph/Node.cpp
@@ -390,25 +390,25 @@ std::set<Aidge::NodePtr> Aidge::Node::getNodeDelta(int delta, std::set<Aidge::No
     return out;
 }
 
-namespace Aidge {
-std::ostream& operator << (std::ostream& os, Aidge::Node& n) {
-    using namespace std;
-    os << "Node :\tName :\t\"" << n.name() << "\"\tType : \"" << n.getOperator()->type()<< "\"\tIN/OUTputs : "<< n.nbInputs() <<"/"<< n.nbOutputs() <<endl; 
-    os << "\tParents :\t" ;
-    for (const auto & p : n.getParents())
-    {
-        os << "\"" <<p->name() << "\"\t"; 
-    }
-    os << endl;
-    os << "\tChildren :\t" ;
-    for (const auto & c : n.getChildren())
-    {
-        os << "\"" << c->name() << "\"\t"; 
-    }
-    os << endl;
-    return os;
-}
-}
+// namespace Aidge {
+// std::ostream& operator << (std::ostream& os, Aidge::Node& n) {
+//     using namespace std;
+//     os << "Node :\tName :\t\"" << n.name() << "\"\tType : \"" << n.getOperator()->type()<< "\"\tIN/OUTputs : "<< n.nbInputs() <<"/"<< n.nbOutputs() <<endl; 
+//     os << "\tParents :\t" ;
+//     for (const auto & p : n.getParents())
+//     {
+//         os << "\"" <<p->name() << "\"\t"; 
+//     }
+//     os << endl;
+//     os << "\tChildren :\t" ;
+//     for (const auto & c : n.getChildren())
+//     {
+//         os << "\"" << c->name() << "\"\t"; 
+//     }
+//     os << endl;
+//     return os;
+// }
+// }
 /////////////////////////////////////////////////////////////////////////////////////////////
 // private
 
-- 
GitLab