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
+ 5
4
Compare changes
  • Side-by-side
  • Inline
@@ -267,10 +267,11 @@ public:
*/
std::vector<std::pair<NodePtr, IOIndex_t>> inputs(const std::string& name) const;
/** @todo weird things happening here with this outsideoutputpos
* @brief List outside output connections of the GraphView. The vector
* size is guaranteed to match the number of outputs of the GraphView. If there is
* no connection to a given output, the corresponding sub-vector will be empty.
/**
* @brief List outside output connections of the GraphView.
* @details The vector size is guaranteed to match the number of outputs of the GraphView.
* If there is no connection to a given output, the corresponding sub-vector will be empty.
* @TODO: doesn't seem to work if new nodes should be added, it seem to only update the connection of already output nodes
* @return std::vector<std::pair<NodePtr, IOIndex_t>>
*/
std::vector<std::vector<std::pair<NodePtr, IOIndex_t>>> outputs() const;
Loading