From 915981ab4383aff487adf429613051dbc98ef4d0 Mon Sep 17 00:00:00 2001
From: Octave Perrin <operrin@lrtechnologies.fr>
Date: Wed, 13 Nov 2024 10:21:26 +0100
Subject: [PATCH] ordered

---
 include/aidge/graph/GraphView.hpp | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/include/aidge/graph/GraphView.hpp b/include/aidge/graph/GraphView.hpp
index 5ec62c50a..371d1d72e 100644
--- a/include/aidge/graph/GraphView.hpp
+++ b/include/aidge/graph/GraphView.hpp
@@ -188,9 +188,20 @@ public:
     /** @brief Assess if the given Node is an output Node of the GraphView object. */
     bool isOutputNode(const NodePtr& nodePtr) const;
 
-    /** @todo
+    /**
+    * @brief Orders the inputs of the GraphView
+    * @details The Inputs will be ordered in the same order as they come in the std::vector.
+    * Inputs missing from this vector will then be added as per their previous order.
+    * @param std::vector<std::pair<NodePtr, IOIndex_t>>& inputs set of inputs in the wanted order
     */
     void setOrderedInputs(const std::vector<std::pair<NodePtr, IOIndex_t>>& inputs);
+
+    /**
+    * @brief Orders the outputs of the GraphView
+    * @details The outputs will be ordered in the same order as they come in the std::vector.
+    * Outputs missing from this vector will then be added as per their previous order.
+    * @param std::vector<std::pair<NodePtr, IOIndex_t>>& outputs set of outputs in the wanted order
+    */
     void setOrderedOutputs(const std::vector<std::pair<NodePtr, IOIndex_t>>& outputs);
 
     /** @todo i don't understand the description
-- 
GitLab