Skip to content
Snippets Groups Projects
Commit 49dc8de4 authored by Octave Perrin's avatar Octave Perrin
Browse files

continuation

parent 489bc911
No related branches found
No related tags found
No related merge requests found
...@@ -115,7 +115,6 @@ public: ...@@ -115,7 +115,6 @@ public:
/** /**
* @brief Set the GraphView name. * @brief Set the GraphView name.
* @warning Undefined behaviour when several GraphViews have the same name. @todo to check if still true as it is a copy paste from Node
* @param name New name for the GraphView. * @param name New name for the GraphView.
*/ */
inline void setName(const std::string &name) { mName = name; } inline void setName(const std::string &name) { mName = name; }
...@@ -249,7 +248,7 @@ public: ...@@ -249,7 +248,7 @@ public:
std::vector<std::pair<NodePtr, IOIndex_t>> inputs() const; std::vector<std::pair<NodePtr, IOIndex_t>> inputs() const;
/** @todo having two inputs function, one without args that treat graph's inpput and one with args treating a node's input is fishy /** @todo having two inputs function, one without args that treat graph's inpput and one with args treating a node's input is fishy
* @TODO @warning what if the node isn't found? where is the try catch of the .at? * @TODO @warning what if the node isn't found? where is the try catch of the .at?
* @brief List all input connections (within and outside) of the specified GraphView node named "name". * @brief List all input connections (within and outside) of the specified GraphView node named "name".
* @return std::vector<std::pair<NodePtr, IOIndex_t>> * @return std::vector<std::pair<NodePtr, IOIndex_t>>
*/ */
......
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