Revert "fix LXVST support for plugins that make audioMaster callbacks from
[ardour.git] / libs / ardour / ardour / graphnode.h
index 5c7097e91fe19cea24d4d569d87b9485be767922..9e0182300f3ea662ae3874ff4eea96da1714f07d 100644 (file)
@@ -37,6 +37,7 @@ typedef boost::shared_ptr<GraphNode> node_ptr_t;
 typedef std::set< node_ptr_t > node_set_t;
 typedef std::list< node_ptr_t > node_list_t;
 
+/** A node on our processing graph, ie a Route */      
 class GraphNode
 {
     public:
@@ -52,11 +53,13 @@ class GraphNode
     private:
        friend class Graph;
 
+       /** Nodes that we directly feed */
        node_set_t  _activation_set[2];
 
-        boost::shared_ptr<Graph> _graph;
+       boost::shared_ptr<Graph> _graph;
 
        gint _refcount;
+       /** The number of nodes that we directly feed us (one count for each chain) */
        gint _init_refcount[2];
 };