Skip to content
Snippets Groups Projects

#194: Add documentation for GraphView

Open #194: Add documentation for GraphView
All threads resolved!
Open Ghost User requested to merge hrouis/aidge_core:aidge_core#194 into dev
All threads resolved!
1 file
+ 1
2
Compare changes
  • Side-by-side
  • Inline
@@ -115,7 +115,6 @@ public:
/**
* @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.
*/
inline void setName(const std::string &name) { mName = name; }
@@ -249,7 +248,7 @@ public:
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 @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".
* @return std::vector<std::pair<NodePtr, IOIndex_t>>
*/
Loading